From e2a544a987ad9dd5d9c85c9b3a1424bbe6a4f7a2 Mon Sep 17 00:00:00 2001 From: cobb Date: Mon, 13 Jun 2022 11:48:01 +0800 Subject: [PATCH] fix --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9fec3f1..7e11ac0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ # runtime FROM alpine:latest RUN echo -e http://mirrors.ustc.edu.cn/alpine/v3.13/main/ > /etc/apk/repositories -COPY configs/zoneinfo.zip /opt/zoneinfo.zip ENV ZONEINFO /opt/zoneinfo.zip RUN apk add --no-cache gettext tzdata && \ ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \ @@ -11,5 +10,5 @@ RUN apk add --no-cache gettext tzdata && \ RUN mkdir -p /app/data WORKDIR /app COPY carp /app/carp -EXPOSE 8555 -ENTRYPOINT ./carp -c ./configs \ No newline at end of file +EXPOSE 8080 +ENTRYPOINT ./carp \ No newline at end of file