From fe5bcfaa87fe53767bbdae950c7bf5332eb9433b Mon Sep 17 00:00:00 2001 From: Nick Donathan <31076657+ndonathan@users.noreply.github.com> Date: Sat, 21 Dec 2024 00:15:17 -0600 Subject: [PATCH] fix: change base image to debian:stable and update SQLite dependencies installation --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 531e996..7eeb4cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ COPY . . RUN CGO_ENABLED=1 go build -o server-info-api main.go # Final stage -FROM debian:stable-slim AS final +FROM debian:stable AS final # Install required dependencies for SQLite RUN apk add --no-cache libc6-compat