diff --git a/Dockerfile b/Dockerfile index 363dbbe..6e690cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,7 @@ FROM frolvlad/alpine-glibc WORKDIR /www/allinssl/ -RUN set -eux && sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/repositories \ - && apk add --no-cache curl \ +RUN apk add --no-cache curl \ && curl https://download.allinssl.com/bin/allinssl-$(uname -s)-$(uname -m).tar.gz | tar -xz -C /www/allinssl/ \ && apk del curl @@ -22,4 +21,4 @@ EOF RUN chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] -EXPOSE 8888 \ No newline at end of file +EXPOSE 8888