From 29e6ae83a612917fa3c0aecdcb4e8c87fde6a776 Mon Sep 17 00:00:00 2001 From: Gustavo Maronato Date: Mon, 18 Sep 2023 02:01:13 -0300 Subject: [PATCH] fixed dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5a76fb7..ffbad29 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,13 +28,15 @@ COPY main.go ./ # Build it RUN --mount=type=cache,target=/tmp/.go-build-cache \ - make backend VERSION=$VERSION + make build VERSION=$VERSION # Now create a new image with just the binary FROM gcr.io/distroless/static-debian11:nonroot WORKDIR /app +COPY urns.yml /app/urns.yml + # Set our runtime environment ENV ENV_DOCKER=true