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 60de2c2 commit 839fe43
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions all.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,20 +51,20 @@ RUN --mount=type=cache,id=go_mod,mode=0755,target=/go/pkg/mod go build -ldflags=

FROM base as bulker

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

FROM base as ingest

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

FROM base as sidecar

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

FROM base as syncctl

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

0 comments on commit 839fe43

Please sign in to comment.