Files
wagfarm/wagfarm-ui/Dockerfile
2025-04-17 17:00:15 +02:00

9 lines
186 B
Docker

# Use Nginx as the base image
FROM nginx:alpine
# Copy the frontend files into the Nginx default directory
COPY ./ /usr/share/nginx/html
# Expose the default Nginx port (80)
EXPOSE 80