everything
continuous-integration/drone/push Build is passing Details

This commit is contained in:
quackerd 2021-04-25 04:53:48 -04:00
parent 880935f956
commit d92a003c31
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ FROM alpine:latest
COPY image/ /opt/
RUN set -xe &&
RUN set -xe && \
apk add --no-cache unzip wget nginx certbot openssl && \
mkdir -p /opt/xray && \
ln -s /opt/config/certs /etc/letsencrypt && \
@ -13,7 +13,7 @@ RUN set -xe &&
addgroup www && \
adduser -H -D -S -s /bin/false www -G www && \
chown -R www:www /opt/nginx && \
set -xe && apk del unzip wget
apk del unzip wget
EXPOSE 80 443