From 8501ae9c414403f81e2327f00cd1a9bb1a13ded8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 11:43:07 +0000 Subject: [PATCH] chore(deps): update alpine to v3.18 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9d32224..3bad74c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ COPY . . RUN swag init -d ./internal/api/routers,./ -g main_router.go RUN CGO_ENABLED=0 GOOS=linux go build -o /app/chabo-api -ldflags="-X github.com/vareversat/chabo-api/internal/api/routers.version=$VERSION" -FROM alpine:3.14 +FROM alpine:3.18 COPY --from=build /app/chabo-api /usr/bin/local/chabo-api EXPOSE 8080