From 6c496d644bf9ba7f05175e70ef847f36687a7127 Mon Sep 17 00:00:00 2001 From: Nedim Date: Tue, 14 Nov 2023 10:24:25 +0100 Subject: [PATCH] Added change to dockerfile --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index f03415b..68f789a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,5 +14,10 @@ FROM --platform=linux/amd64 golang:1.21 WORKDIR /app +# Copy the binary from the builder stage COPY --from=builder /src/pactual-backend . + +# Copy the app/views/qor folder +COPY app/views/qor /app/views/qor + CMD ["/app/pactual-backend"]