From f31e9c70d259f892fe04f55a5baef32a656e8ee1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lan=20Monteiro?= Date: Tue, 19 Dec 2023 15:43:41 -0300 Subject: [PATCH] chore(tfv2-backend): add CA certificates to remote Docker stage --- backend/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/Dockerfile b/backend/Dockerfile index 876beef8..c48ef231 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -20,4 +20,5 @@ WORKDIR /app COPY --from=builder /workspace/main . COPY --from=builder /lib/ld-musl-x86_64.so.1 /lib/ld-musl-x86_64.so.1 COPY --from=base /workspace/migrations ./migrations +COPY --from=base /etc/ssl/certs/ /etc/ssl/certs/ ENTRYPOINT ["./main"]