We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4577b5 commit 9e442b1Copy full SHA for 9e442b1
Dockerfile
@@ -77,10 +77,12 @@ RUN addgroup -S permit -g 1001 && \
77
# Create backup directory with permissions
78
RUN mkdir -p /app/backup && chmod -R 777 /app/backup
79
80
-# Install necessary libraries in a single RUN command
+# Install necessary libraries and delete SQLite in a single RUN command
81
RUN apk update && \
82
apk upgrade && \
83
- apk add --no-cache bash build-base libffi-dev libressl-dev musl-dev zlib-dev gcompat wget
+ apk add --no-cache bash build-base libffi-dev libressl-dev musl-dev zlib-dev gcompat wget && \
84
+ apk del sqlite
85
+
86
87
# Copy OPA binary from the build stage
88
COPY --from=opa_build --chmod=755 /opa /app/bin/opa
0 commit comments