infra/master/mystic-home/Dockerfile
2026-04-01 11:43:26 -04:00

6 lines
164 B
Docker

FROM nginx:alpine
# Copy the static files to the nginx html directory
COPY ./www /usr/share/nginx/html
# Expose port 80
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]