We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1e0771c + d4f37de commit 61ed04dCopy full SHA for 61ed04d
dockers/docker-base-bullseye/Dockerfile.j2
@@ -78,6 +78,21 @@ RUN pip3 install supervisord-dependent-startup==1.4.0
78
79
RUN mkdir -p /etc/supervisor /var/log/supervisor
80
81
+# Install gcc, libc6-dev and python3-dev for compiling python-lzf
82
+RUN apt-get -y install build-essential libc6-dev python3-dev
83
+
84
+# Install python-lzf
85
+RUN pip3 install 'python-lzf==0.2.4'
86
87
+# Install rdbtools
88
+RUN pip3 install 'rdbtools==0.1.15'
89
90
+# Uninstall gcc, libc6-dev and python3-dev for compiling python-lzf
91
+RUN apt-get -y purge build-essential libc6-dev python3-dev
92
93
+# Uninstall unused dependencies
94
+RUN apt autoremove -y --purge
95
96
RUN apt-get -y purge \
97
exim4 \
98
exim4-base \
0 commit comments