hdkv
/
fwzookeeper
Archived
1
Fork 0

Update Dockerfile with CA certificates

master 0.1.1
Vladimir Hodakov 2019-10-08 10:56:02 +04:00
parent c2caa0844a
commit f541809913
Signed by: Vladimir Hodakov
GPG Key ID: 673980B6882F82C6
2 changed files with 7 additions and 2 deletions

View File

@ -3,12 +3,17 @@ FROM golang:1.13 AS builder
COPY . /build/
WORKDIR /build/
RUN apt-get update && apt-get -y install ca-certificates
RUN CGO_ENABLED=1 GOOS=linux GOARCH=amd64 GOFLAGS='-mod=vendor' go build -tags netgo -ldflags '-w -extldflags "-static"'
FROM scratch
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /build/fwzookeeper /usr/local/bin/fwzookeeper
VOLUME ["/data"]
ENTRYPOINT [ "/usr/local/bin/fwzookeeper" ]
EXPOSE 6000
ENTRYPOINT [ "/usr/local/bin/fwzookeeper" ]

View File

@ -9,7 +9,7 @@ import (
)
// VERSION is the current bot's version
const VERSION = "0.1.0"
const VERSION = "0.1.1"
// Context is the main application context.
type Context struct {