From 8776a7d2076afe87ac26b63896853267bb64c98b Mon Sep 17 00:00:00 2001 From: Satya Date: Fri, 4 Jul 2025 11:05:27 +0530 Subject: [PATCH] Create Dockerfile --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..3346897d7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +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;"]