Containerized version (#639)

* add Dockerfile

* added custom nginx config file
This commit is contained in:
Rutger Hartog 2021-07-13 17:42:28 +02:00 committed by GitHub
parent d6c18fb6a2
commit 53c20a48da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
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