chore: Update web UI Dockerfile to add mariadb-connector-c dependency

This commit is contained in:
Théophile Diot 2024-07-09 10:55:38 +01:00
parent 3c113d214d
commit 39c97a0d67
No known key found for this signature in database
GPG key ID: FA995104A0BA376A

View file

@ -45,7 +45,7 @@ COPY --from=builder --chown=0:101 /usr/share/bunkerweb /usr/share/bunkerweb
WORKDIR /usr/share/bunkerweb
# Add ui user, install runtime dependencies, create data folders and set permissions
RUN apk add --no-cache bash unzip libmagic mariadb-client postgresql-client sqlite && \
RUN apk add --no-cache bash unzip libmagic mariadb-connector-c mariadb-client postgresql-client sqlite && \
addgroup -g 101 ui && \
adduser -h /var/cache/nginx -g ui -s /bin/sh -G ui -D -H -u 101 ui && \
echo "Docker" > INTEGRATION && \