Skip to content

Commit

Permalink
chore: remove extra } in Dockerfile (#258)
Browse files Browse the repository at this point in the history
Signed-off-by: Marco Argentieri <[email protected]>
  • Loading branch information
tiero authored Aug 15, 2024
1 parent 94cd222 commit edc4534
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 @@ -11,7 +11,7 @@ COPY . .

ENV GOPROXY=https://goproxy.io,direct
RUN cd server && CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -ldflags="-X 'main.Version=${VERSION}'" -o ../bin/arkd ./cmd/arkd
RUN cd client && CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -ldflags="-X 'main.Version=${VERSION}}'" -o ../bin/ark .
RUN cd client && CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -ldflags="-X 'main.Version=${VERSION}'" -o ../bin/ark .

# Second image, running the arkd executable
FROM alpine:3.12
Expand Down

0 comments on commit edc4534

Please sign in to comment.