From aca417d9baf37b05130c8a044a928d5b487c5931 Mon Sep 17 00:00:00 2001 From: Aditya <60684641+0x0elliot@users.noreply.github.com> Date: Tue, 9 Dec 2025 17:05:14 +0530 Subject: [PATCH] fix: backend build step --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 5ccc3de8..2ee3bcf0 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -24,7 +24,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o shufflebackend . # Certificate build - gets required certs FROM alpine:latest as certs -RUN apk add --update ca-certificates +RUN apk add --update --no-scripts ca-certificates # Sets up the final image FROM alpine:3.22.2