Dockerfile hinzugefügt

This commit is contained in:
2025-01-04 20:16:59 +00:00
parent 496ad7d3a1
commit 2b83c6a783

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM alpine:latest
RUN apk update && apk upgrade && apk add bash autoconf automake make gcc g++ nginx
COPY nginx /etc/nginx
EXPOSE 80
EXPOSE 443
STOPSIGNAL SIGTERM
CMD ["/bin/bash", "-c", "chmod 755 /usr/share/nginx/html && nginx -g 'daemon off;'"]