This commit is contained in:
2021-12-03 12:19:55 +03:00
commit 9744337c99
7 changed files with 136 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM golang:1.14.3-alpine AS build
WORKDIR /src
COPY . .
RUN go build -o /out/kicker
FROM scratch AS bin
COPY --from=build /out/kicker /