Use two Dockerfiles, move Docker stuff to /docker

This commit is contained in:
zeke
2024-02-01 18:05:08 -08:00
committed by Zankaria
parent 5ca2d194b4
commit fc63de4ed4
9 changed files with 261 additions and 4 deletions

8
docker/nginx/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM nginx:1.25.3-alpine
COPY . /code
RUN /code/docker/common-setup.sh
CMD ["nginx", "-g", "daemon off;"]
EXPOSE 80 443