Files
is-it-christmas/docker/Dockerfile.frontend
Julien Lengrand-Lambert 16ae2a1430 Creating the project
2025-11-11 10:06:56 +01:00

13 lines
247 B
Docker

FROM nginx:alpine
# Copy frontend files to nginx html directory
COPY frontend/ /usr/share/nginx/html/
# Copy nginx configuration
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
# Expose port 80
EXPOSE 80
# nginx will start automatically