Files
game-timer/Dockerfile
2025-03-28 22:36:08 +01:00

13 lines
303 B
Docker

# Use the official Nginx image as the base image
FROM nginx:alpine
# Remove the default Nginx static files
RUN rm -rf /usr/share/nginx/html/*
# Copy public directory contents into the Nginx directory
COPY public/ /usr/share/nginx/html/
COPY src/ /usr/share/nginx/html/src/
# Expose port 80
EXPOSE 80