Skip to content

Commit

Permalink
Fix builder path after merging with main.
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitcpbot committed Dec 13, 2024
1 parent 9e9be16 commit aa10c93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ RUN --mount=type=cache,target="/root/.cache/go-build" make proto
RUN --mount=type=cache,target="/root/.cache/go-build" make build

FROM debian:bookworm-slim AS logservice
COPY --from=builder /build-dir/bin/logservice .
COPY --from=builder /build-dir/go/bin/logservice .
ENV PATH=$PATH:./
CMD ["./logservice"]

FROM debian:bookworm-slim AS sysdb
COPY --from=builder /build-dir/bin/coordinator .
COPY --from=builder /build-dir/go/bin/coordinator .
ENV PATH=$PATH:./
CMD /bin/bash

0 comments on commit aa10c93

Please sign in to comment.