Merge pull request #4079 from sando38/fix/Dockerfile-odbc

Dockerfile: add missing dependency for mssql databases
This commit is contained in:
badlop 2023-09-27 21:10:16 +02:00 committed by GitHub
commit 5406693a1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -157,7 +157,9 @@ RUN apk -U upgrade --available --no-cache \
&& apk add --no-cache \
$(cat /tmp/runDeps) \
so:libcap.so.2 \
tini
so:libtdsodbc.so.0 \
tini \
&& ln -fs /usr/lib/libtdsodbc.so.0 /usr/lib/libtdsodbc.so
ARG USER
ARG UID