Add TZ package for build stage, support TZ env variable in scratch container

This commit is contained in:
Sergey Bogatyrets 2021-07-07 14:17:44 +03:00
parent 5429ef81e0
commit 929e291542

View File

@ -1,11 +1,13 @@
ARG GOLANG_VERSION="1.12" ARG GOLANG_VERSION="1.12"
FROM golang:$GOLANG_VERSION-alpine as builder FROM golang:$GOLANG_VERSION-alpine as builder
WORKDIR /go/src/github.com/olebedev/socks5 RUN apk --no-cache add tzdata
WORKDIR /go/src/github.com/serjs/socks5
COPY . . COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-s' -o ./socks5 RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-s' -o ./socks5
FROM scratch FROM scratch
COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /go/src/github.com/olebedev/socks5/socks5 / COPY --from=builder /go/src/github.com/serjs/socks5/socks5 /
ENTRYPOINT ["/socks5"] ENTRYPOINT ["/socks5"]