Skip to content

Commit

Permalink
Fix Docker build (#224)
Browse files Browse the repository at this point in the history
Use go install
  • Loading branch information
raviqqe authored May 28, 2022
1 parent 792497f commit aeadaf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang AS build
ADD . /app
WORKDIR /app
RUN CGO_ENABLED=0 GOOS=linux go get .
RUN CGO_ENABLED=0 GOOS=linux go install .

FROM alpine
RUN apk --no-cache add ca-certificates
Expand Down

0 comments on commit aeadaf9

Please sign in to comment.