Fix bug in Dockerfile (#502)

Co-authored-by: Azeem Shaikh <azeems@google.com>
This commit is contained in:
Azeem Shaikh 2021-05-24 17:56:36 -07:00 committed by GitHub
parent de28c3c046
commit 72580f87f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -29,4 +29,4 @@ RUN CGO_ENABLED=0 make build-pubsub
FROM gcr.io/distroless/base:nonroot@sha256:bc84925113289d139a9ef2f309f0dd7ac46ea7b786f172ba9084ffdb4cbd9490
COPY ./cron/data/projects.csv /cron/data/projects.csv
COPY --from=pubsub /src/cron/controller/controller ./cron/controller/controller
ENTRYPOINT ["/cron/controller/controller"]
ENTRYPOINT ["./cron/controller/controller"]

View File

@ -28,4 +28,4 @@ RUN CGO_ENABLED=0 make build-pubsub
FROM gcr.io/distroless/base:nonroot@sha256:bc84925113289d139a9ef2f309f0dd7ac46ea7b786f172ba9084ffdb4cbd9490
COPY --from=pubsub /src/cron/worker/worker ./cron/worker/worker
ENTRYPOINT ["/cron/worker/worker"]
ENTRYPOINT ["./cron/worker/worker"]