Files
cash-report-system/docker/Dockerfile.frontend
2025-07-24 00:23:36 +02:00

15 lines
234 B
Docker

# Frontend Dockerfile
FROM nginx:alpine
# Copy static files
COPY . /usr/share/nginx/html/
# Copy nginx config
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Expose port
EXPOSE 80
# Start nginx
CMD ["nginx", "-g", "daemon off;"]