Projekt

Obecné

Profil

Stáhnout (236 Bajtů) Statistiky
| Větev: | Revize:
1
FROM nginx:alpine
2
COPY nginx.conf /etc/nginx
3
COPY conf.d /etc/nginx/conf.d
4
RUN apk add netcat-openbsd bc curl bash wget openssl; \
5
    apk add libressl; \
6
    wget -O -  https://get.acme.sh | sh;
7
WORKDIR /var/www/
8
CMD ["nginx"]
(1-1/2)