unfc/simplepwa/Dockerfile
2025-03-04 20:28:22 +01:00

9 lines
193 B
Docker

# Use the official Nginx image as the base image
FROM nginx:alpine
# Copy the PWA files into the Nginx HTML directory
COPY . /usr/share/nginx/html
# Expose port 80 to serve the PWA
EXPOSE 80