1
0
mirror of https://github.com/taigrr/godns synced 2025-01-18 04:03:25 -08:00

Let docker can change to correct timezone

This commit is contained in:
Feifan Tang 2020-09-25 16:32:52 +08:00 committed by GitHub
parent f6a27491f3
commit 2d546702ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ WORKDIR /godns
RUN go build -o godns cmd/godns/godns.go
FROM alpine
RUN apk add --update ca-certificates
RUN apk add --no-cache ca-certificates tzdata
RUN mkdir /usr/local/godns
COPY --from=builder /godns/godns /usr/local/godns
RUN chmod +x /usr/local/godns/godns