From 10151b749ffc3750c4a608693ff1502087614b7e Mon Sep 17 00:00:00 2001 From: mrasheduzzaman Date: Tue, 21 Nov 2023 21:05:29 +0600 Subject: [PATCH] Fix docker build stage name issue --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 91e5a38..5673e5a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -53,7 +53,7 @@ USER appuser RUN apt update && apt install -y openssl libpq-dev pkg-config # Copy the executable from the "build" stage. -COPY --from=build /bin/server /bin/ +COPY --from=builder /bin/server /bin/ # Expose the port that the application listens on. EXPOSE 5001