-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile
24 lines (21 loc) · 953 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM python:3.9
WORKDIR /boost
# RUN apt-get remove libexpat1 libexpat1-dev -y
# RUN apt-get remove libsasl2-2 libsasl2-modules-db -y
# RUN apt-get remove linux-libc-dev -y
# RUN apt-get remove libssl-dev -y
# RUN apt-get remove libtiff5 libtiffxx5 -y
RUN apt-get update -y
# RUN apt-get install libssl-dev>=1.1.1k-1+deb11u2 libssl1.1>=1.1.1k-1+deb11u2 openssl>=1.1.1k-1+deb11u2 -y
# RUN apt-get install libexpat1>=2.2.10-2+deb11u1 -y
# RUN apt-get install libsasl2-2>=2.1.27+dfsg-2.1+deb11u1 -y
# RUN apt-get install linux-libc-dev>=5.10.92-2 libc6-dev -y
# RUN apt-get install libtiff5>=4.2.0-1+deb11u1 -y
# RUN apt-get install zlib1g>=1:1.2.11.dfsg-2+deb11u1 -y
# RUN apt-get install libgnutls30>=3.7.1-5+deb11u2
# RUN apt-get install libtirpc-common>=1.3.1-1+deb11u1 -y
# RUN apt-get install libtirpc-dev>=1.3.1-1+deb11u1 -y
# RUN apt-get install libtirpc3>=1.3.1-1+deb11u1 -y
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .