Skip to content

Commit 9dc7a95

Browse files
authored
Fix Dockerfile (#84)
- Remove use of wildcard/astericks characters when copying go binary from the build stage
1 parent 553c603 commit 9dc7a95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ RUN go install ./...
1212

1313
FROM alpine
1414
RUN apk add ca-certificates
15-
COPY --from=build-env /go/bin/* /usr/local/bin/*
15+
COPY --from=build-env /go/bin/ /usr/local/bin/
1616
WORKDIR /workspace
1717
ENTRYPOINT ["/usr/local/bin/graphik"]

0 commit comments

Comments
 (0)