You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Build our binary
from golang:1.10 as builder
RUN go get github.com/skybet/welcomebot
WORKDIR /go/src/github.com/skybet/welcomebot
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o welcomebot .
# Build our final image
FROM alpine:latest
RUN apk add -U ca-certificates
COPY --from=builder /go/src/github.com/skybet/welcomebot/welcomebot /welcomebot
CMD ["/welcomebot"]
Then any deployments of welcomebot could source this image as the base, just overriding config file.
The text was updated successfully, but these errors were encountered:
The skybet user on Docker Hub has nothing but a big picture of @ls12styler so we probably want to talk to him about getting access to this account in order to publish this on there
i.e. something like
Then any deployments of welcomebot could source this image as the base, just overriding config file.
The text was updated successfully, but these errors were encountered: