From 28e3927290dce32efdf79654fd3a05e2c8ef5c15 Mon Sep 17 00:00:00 2001 From: eikendev Date: Fri, 11 Jun 2021 00:16:01 +0200 Subject: [PATCH] Update Dockerfile to reflect filename changes --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3f22476..4dfd8dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN set -ex \ && go mod download \ && go mod verify \ && make build \ - && chmod +x /build/app + && chmod +x /build/out/pushbits FROM alpine @@ -22,7 +22,7 @@ EXPOSE 8080 WORKDIR /app COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ -COPY --from=builder /build/app ./run +COPY --from=builder /build/out/pushbits ./run RUN set -ex \ && apk add --no-cache ca-certificates curl \