fix: remove CGO from build

This commit is contained in:
kekskurse 2025-03-12 22:16:25 +01:00
parent 974ef4a1ff
commit 2b4e9494a7
2 changed files with 2 additions and 2 deletions

View file

@ -19,4 +19,4 @@ steps:
- npm install
- npx playwright install
- npx playwright test
- cat /root/.npm/_logs/*
- cat /root/.npm/_logs/

View file

@ -4,7 +4,7 @@ FROM golang:1.24 AS build
WORKDIR /usr/src/app
COPY ./ ./
RUN go build -o miniauth ./
RUN CGO_ENABLED=0 go build -o miniauth ./
FROM alpine
COPY --from=build /usr/src/app/miniauth /miniauth