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

Merge pull request #80 from tinysnake/master

Let docker can change to correct timezone
This commit is contained in:
Timothy 2020-09-25 22:50:52 +08:00 committed by GitHub
commit ad6e17dc06
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