mirror of
https://github.com/TronoSfera/backupy-agent.git
synced 2026-05-18 18:13:30 +03:00
fix(docker): bundle readline runtime so sqlite3 client loads
The Alpine sqlite3 binary dynamically links against libreadline.so.8; without it the agent crashes at the validate stage of the pipeline with 'Error loading shared library libreadline.so.8: No such file or directory'. Add the readline package to the runtime stage so sqlite3 starts cleanly.
This commit is contained in:
parent
f9160a7686
commit
6a56577dab
1 changed files with 1 additions and 0 deletions
|
|
@ -77,6 +77,7 @@ RUN apk add --no-cache \
|
||||||
mariadb-connector-c \
|
mariadb-connector-c \
|
||||||
openssl \
|
openssl \
|
||||||
sqlite-libs \
|
sqlite-libs \
|
||||||
|
readline \
|
||||||
&& addgroup -S backupy -g 1000 \
|
&& addgroup -S backupy -g 1000 \
|
||||||
&& adduser -S backupy -G backupy -u 1000
|
&& adduser -S backupy -G backupy -u 1000
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue