Skip to content

Commit

Permalink
Merge pull request #4 from semiotic-ai/dockerfile_fix
Browse files Browse the repository at this point in the history
fix: Dockerfile go buildvcs=false
  • Loading branch information
aasseman authored Nov 18, 2022
2 parents 3a3d746 + f38120a commit 4fc43d8
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
Expand Up @@ -4,7 +4,7 @@ FROM golang:1.18-bullseye as build

WORKDIR /root/app
COPY . .
RUN go build -ldflags="-s -w" -o autoagora-indexer-service ./src
RUN go build -buildvcs=false -ldflags="-s -w" -o autoagora-indexer-service ./src

########################################################################################

Expand Down

0 comments on commit 4fc43d8

Please sign in to comment.