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