Leave no apk cache in Docker image (#3327)

This commit is contained in:
Peter Dave Hello 2023-06-26 17:59:02 +08:00 committed by GitHub
parent ddfa112e0b
commit 2f3d60a63b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,7 @@ RUN \
FROM alpine:3 as lemmy
# Install libpq for postgres
RUN apk add libpq
RUN apk add --no-cache libpq
# Copy resources
COPY --from=builder /app/lemmy_server /app/lemmy