From d4b8cc3576e2022916fbfef136c9cbae275bf69d Mon Sep 17 00:00:00 2001 From: bjdgyc Date: Sat, 10 Apr 2021 15:51:03 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9docker=E6=BA=90=E5=9C=B0?= =?UTF-8?q?=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 399f58e..ef466cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,9 @@ COPY docker_entrypoint.sh /app/ #TODO 本地打包时使用镜像 #RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/repositories -RUN apk add --no-cache bash iptables && ls /app +RUN apk add --no-cache bash iptables \ + && chmod +x /app/docker_entrypoint.sh \ + && ls /app EXPOSE 443 8800