Create Dockerfile

This commit is contained in:
Satya 2025-07-04 11:05:27 +05:30 committed by GitHub
parent 0bb7489cb2
commit 8776a7d207
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

9
Dockerfile Normal file
View File

@ -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;"]