mathstuff/Dockerfile
2025-11-25 11:07:51 +01:00

14 lines
No EOL
337 B
Docker

FROM nginx:alpine
# Copy web files to nginx
COPY index.html /usr/share/nginx/html/
COPY styles.css /usr/share/nginx/html/
COPY script.js /usr/share/nginx/html/
COPY translations.js /usr/share/nginx/html/
COPY translations/ /usr/share/nginx/html/translations/
# Expose port 80
EXPOSE 80
# Start nginx
CMD ["nginx", "-g", "daemon off;"]