8 lines
211 B
Docker
8 lines
211 B
Docker
FROM nginx:alpine
|
|
|
|
# Copy the Nginx configuration into the image at build time.
|
|
# This avoids bind-mount issues on production servers (e.g., Coolify).
|
|
COPY default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|