mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-16 09:21:24 +01:00
7 lines
246 B
Docker
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
|