1

Add Dockerfile for container build

This commit is contained in:
2019-10-08 06:17:07 +04:00
parent a6ae9b081a
commit 5ba14d98c3
2 changed files with 24 additions and 1 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
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/fw_zookeeper_helper
VOLUME ["/data"]
ENTRYPOINT [ "/usr/local/bin/fw_zookeeper_helper" ]