mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-13 12:33:23 +02:00
11 lines
271 B
Docker
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;"]
|