forked from EFForg/https-everywhere-docker-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
32 lines (29 loc) · 677 Bytes
/
Dockerfile
File metadata and controls
32 lines (29 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FROM ubuntu:bionic
MAINTAINER William Budington "bill@eff.org"
RUN apt-get update && \
apt-get install -y --no-install-recommends \
python3.6 \
python2.7 \
python3.6-dev \
python2.7-dev \
python3-pip \
python-pip \
git-core \
libdpkg-perl \
gcc \
curl \
libxml2-dev \
libcurl4-openssl-dev \
libssl-dev \
ca-certificates \
miredo \
tor && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* \
/tmp/* \
/var/tmp/*
RUN pip install setuptools wheel
RUN pip3 install setuptools wheel
ENV PYCURL_SSL_LIBRARY=openssl
RUN pip install -U --force-reinstall pycurl
RUN pip3 install -U --force-reinstall pycurl