mirror of
https://github.com/nginx/nginx.git
synced 2025-07-20 19:27:29 +08:00
10 lines
248 B
Docker
10 lines
248 B
Docker
FROM debian:bookworm-slim
|
|
|
|
# Copy entire NGINX install directory
|
|
COPY ./nginx /usr/local/nginx
|
|
|
|
EXPOSE 80 443
|
|
|
|
# Use full path to NGINX binary and it will find its own config and logs
|
|
ENTRYPOINT ["/usr/local/nginx/sbin/nginx", "-g", "daemon off;"]
|