Initial commit
This commit is contained in:
10
Dockerfile
Normal file
10
Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM alpine:latest
|
||||
RUN apk update && apk upgrade
|
||||
RUN apk add --update --no-cache python3 nginx certbot
|
||||
RUN mkdir -p /run/nginx
|
||||
RUN mkdir -p /var/www/html
|
||||
COPY default.conf /etc/nginx/http.d/
|
||||
COPY index.html /var/www/html/
|
||||
COPY run.sh /bin/
|
||||
ENTRYPOINT ["/bin/run.sh"]
|
||||
|
Reference in New Issue
Block a user