Skip to content

Commit c33ee7f

Browse files
authored
Merge pull request #966 from zzzfwww/main
🐛 修复dockerfile缺少工具
2 parents 4686723 + 44fb2c9 commit c33ee7f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.7.12-slim
22

3-
ARG EXTRA_TOOLS="curl wget python3-dev git git-lfs vim-tiny gcc locales subversion telnet procps openssh-client"
3+
ARG EXTRA_TOOLS="curl wget python3-dev git git-lfs vim-tiny gcc locales subversion telnet procps openssh-client libreadline-dev"
44

55
RUN apt-get update \
66
&& apt-get install -y --no-install-recommends $EXTRA_TOOLS \
@@ -10,6 +10,7 @@ RUN apt-get update \
1010
&& echo "LANG=zh_CN.UTF-8" > /etc/locale.conf \
1111
&& locale-gen \
1212
&& 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 \
1314
&& rm -rf /var/cache/apt/* /root/.cache
1415

1516
WORKDIR /workspace/client

0 commit comments

Comments
 (0)