fix base image

This commit is contained in:
2024-07-30 13:12:39 +02:00
parent aa3f67281b
commit 0ac77c14f6

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