From bb69899a789db947a6e1ff78432cefe069a0a830 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Fri, 25 Oct 2019 22:43:57 +0200 Subject: [PATCH] fix isprime --- isprime-go/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isprime-go/Dockerfile b/isprime-go/Dockerfile index c0e2d86..75c0175 100644 --- a/isprime-go/Dockerfile +++ b/isprime-go/Dockerfile @@ -29,7 +29,7 @@ FROM alpine:3 RUN apk add --no-cache ca-certificates # Copy the binary to the production image from the builder stage. -COPY --from=builder /app/server /server +COPY --from=builder /go/src/app/server /server # Run the web service on container startup. CMD ["/server"]