Add Sonarqube Analyse

main
stef 2025-12-16 11:32:09 +01:00
parent 534c9cf20f
commit a76ef2ee84
1 changed files with 4 additions and 3 deletions

View File

@ -9,9 +9,10 @@ COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o main ./cmd/server
FROM alpine:latest
RUN apk --no-cache add ca-certificates
RUN addgroup -S nonroot \
RUN apk --no-cache add ca-certificates \
&& addgroup -S nonroot \
&& adduser -S nonroot -G nonroot
WORKDIR /app
COPY --from=builder /app/main .
COPY --from=builder /app/internal/web ./internal/web