Skip to content

Commit 7ba2824

Browse files
Use Python 3 instead of Python 2
1 parent edc7328 commit 7ba2824

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ RUN set -ex && \
1111
libffi6 \
1212
libffi-dev \
1313
libssl-dev \
14-
python \
15-
python-dev \
14+
python3 \
15+
python3-dev \
1616
openssl \
1717
&& \
1818
# Install certbot
19-
curl -L 'https://bootstrap.pypa.io/get-pip.py' | python && \
19+
curl -L 'https://bootstrap.pypa.io/get-pip.py' | python3 && \
2020
pip install -U cffi certbot \
2121
&& \
2222
# Remove everything that is no longer necessary
@@ -25,7 +25,7 @@ RUN set -ex && \
2525
curl \
2626
libffi-dev \
2727
libssl-dev \
28-
python-dev \
28+
python3-dev \
2929
&& \
3030
apt-get autoremove -y && \
3131
apt-get clean && \

0 commit comments

Comments
 (0)