Add Dockerfile

This commit is contained in:
rasmus 2022-11-06 15:06:11 +02:00
parent 859985e3c3
commit 66c71faf10
1 changed files with 17 additions and 0 deletions

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
# https://github.com/jtagcat/dotfiles/blob/main/scripts/template/gobuild.Dockerfile
FROM golang:1.19 AS builder
WORKDIR /wd
COPY go.mod go.sum ./
RUN go mod download
COPY . ./
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o logmower-shippper
FROM alpine
LABEL org.opencontainers.image.source="https://git.k-space.ee/k-space/logmower-shipper"
WORKDIR /wd
#RUN apk --no-cache add ca-certificates
COPY --from=builder /wd/logmower-shippper ./
CMD ["./logmower-shippper"]