fix base image
All checks were successful
Build and Push Docker Image / Explore-Gitea-Actions (push) Successful in 24s

This commit is contained in:
Tim
2024-07-30 13:12:39 +02:00
parent c04f358d10
commit 57d83b64b9

View File

@@ -6,10 +6,9 @@ COPY src src
RUN go build -o /bin/api ./main.go
FROM debian:stable
FROM debian:stable-slim
RUN apt-get update && apt-get install -y ca-certificates
RUN update-ca-certificates
WORKDIR /app
COPY --from=builder /bin/api ./api
COPY migrations ./migrations