15 lines
348 B
Docker
15 lines
348 B
Docker
FROM fat0troll/tdlib-golangci AS builder
|
|
|
|
COPY . /build/
|
|
WORKDIR /build/
|
|
|
|
RUN CGO_ENABLED=1 GOOS=linux GOARCH=amd64 GOFLAGS='-mod=vendor' go build -ldflags '-w -extldflags "-static"'
|
|
|
|
FROM scratch
|
|
|
|
COPY --from=builder /build/fwzookeeper_helper /usr/local/bin/fwzookeeper_helper
|
|
|
|
VOLUME ["/data"]
|
|
|
|
ENTRYPOINT [ "/usr/local/bin/fwzookeeper_helper" ]
|