We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4686723 + 44fb2c9 commit c33ee7fCopy full SHA for c33ee7f
client/Dockerfile
@@ -1,6 +1,6 @@
1
FROM python:3.7.12-slim
2
3
-ARG EXTRA_TOOLS="curl wget python3-dev git git-lfs vim-tiny gcc locales subversion telnet procps openssh-client"
+ARG EXTRA_TOOLS="curl wget python3-dev git git-lfs vim-tiny gcc locales subversion telnet procps openssh-client libreadline-dev"
4
5
RUN apt-get update \
6
&& apt-get install -y --no-install-recommends $EXTRA_TOOLS \
@@ -10,6 +10,7 @@ RUN apt-get update \
10
&& echo "LANG=zh_CN.UTF-8" > /etc/locale.conf \
11
&& locale-gen \
12
&& ln -sf /usr/share/zoneinfo/Asia/Hong_Kong /etc/localtime \
13
+ && cd /lib/x86_64-linux-gnu && ln -sf libreadline.so.8.1 libreadline.so.6 \
14
&& rm -rf /var/cache/apt/* /root/.cache
15
16
WORKDIR /workspace/client
0 commit comments