Compare commits

...

2 Commits

Author SHA1 Message Date
c67e98b9e2 feat 基础镜像amd64 2026-01-24 10:04:08 +08:00
4b40806c85 feat 基础镜像amd64 2026-01-24 10:03:58 +08:00

View File

@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 alpine:3.23.2 FROM alpine:3.23.2
RUN apk add --no-cache tzdata && \ RUN apk add --no-cache tzdata && \
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \ ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
@@ -6,7 +6,7 @@ RUN apk add --no-cache tzdata && \
COPY service-gateway /app/service-gateway COPY service-gateway /app/service-gateway
COPY config /app/config COPY config /app/config
RUN chmod 777 /app/service-gateway RUN chmod +x /app/service-gateway
WORKDIR /app WORKDIR /app
CMD ["./service-gateway"] CMD ["./service-gateway"]