Fantasy-Map-Generator/Dockerfile
Rutger Hartog 53c20a48da
Containerized version (#639)
* add Dockerfile

* added custom nginx config file
2021-07-13 18:42:28 +03:00

7 lines
246 B
Docker

FROM nginx:stable-alpine
# Copy the contents of the repo to the container
COPY . /usr/share/nginx/html
# Move the customized nginx config file to the nginx folder
RUN mv /usr/share/nginx/html/.docker/default.conf /etc/nginx/conf.d/default.conf