Dienstplan-Pro/Dockerfile
2026-02-02 11:51:11 +00:00

10 lines
168 B
Docker

FROM nginx:alpine
# Copy static assets to Nginx html folder
COPY . /usr/share/nginx/html
# Expose port 80
EXPOSE 80
# Start Nginx
CMD ["nginx", "-g", "daemon off;"]