We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20cb1c9 commit dad5baeCopy full SHA for dad5bae
1 file changed
Dockerfile
@@ -4,6 +4,12 @@ ENV PTBT_DATADIR="${PTBT_WORKDIR}/data"
4
ENV PTBT_USER="tfbackendsvc"
5
COPY . "${PTBT_WORKDIR}"
6
RUN mkdir "${PTBT_DATADIR}"
7
+
8
+# Patch for Git CVE - remove when git version >= 2.39
9
+RUN apt-get update
10
+RUN apt install software-properties-common -y
11
+RUN add-apt-repository ppa:git-core/ppa -y
12
13
RUN apt-get update
14
RUN apt-get dist-upgrade -y
15
RUN apt-get install python3 python3-pip python3-setuptools net-tools openssh-client sudo git -y
0 commit comments