Skip to content

Commit

Permalink
fix for all.Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
absorbb committed Jan 25, 2024
1 parent 839fe43 commit 615a93e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions all.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ RUN --mount=type=cache,id=go_mod,mode=0755,target=/go/pkg/mod go build -ldflags=

FROM base as bulker

COPY --from=builder /app/bulkerapp/bulker ./
COPY --from=builder /app/bulker ./
CMD ["/app/bulker"]

FROM base as ingest
Expand All @@ -61,10 +61,10 @@ CMD ["/app/ingest"]

FROM base as sidecar

COPY --from=builder /app/sync-sidecar/sidecar ./
COPY --from=builder /app/sidecar ./
CMD ["/app/sidecar"]

FROM base as syncctl

COPY --from=builder /app/sync-controller/syncctl ./
COPY --from=builder /app/syncctl ./
CMD ["/app/syncctl"]

0 comments on commit 615a93e

Please sign in to comment.