Files
game-timer/Dockerfile
2025-03-29 03:45:26 +01:00

15 lines
205 B
Docker

# Use a lightweight server
FROM nginx:alpine
# Set working directory
WORKDIR /usr/share/nginx/html
# Copy all the application files
COPY . .
# Copy the .env file
COPY .env .
# Expose port 80
EXPOSE 80