labelbase/nginx/Dockerfile
Xavier Fiechter 2f517a3ef8 .
2025-11-18 22:39:20 +01:00

11 lines
271 B
Docker

# Use official nginx image with explicit platform support
FROM --platform=$BUILDPLATFORM nginx:alpine
# Copy nginx configuration
COPY nginx.conf /etc/nginx/nginx.conf
# Expose port 8080
EXPOSE 8080
# Use the default nginx entrypoint
CMD ["nginx", "-g", "daemon off;"]