Skip to content
This repository was archived by the owner on Jun 24, 2022. It is now read-only.

Commit 238b69f

Browse files
authored
Merge pull request #23 from lnobach/master
2 parents 1f46f18 + 1fc51c1 commit 238b69f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ EXPOSE 443
88
# Do this apt/pip stuff all in one RUN command to avoid creating large
99
# intermediate layers on non-squashable docker installs
1010
RUN apt update && \
11-
apt install -y python python-dev libffi6 libffi-dev libssl-dev curl build-essential procps && \
12-
curl -L 'https://bootstrap.pypa.io/get-pip.py' | python && \
11+
apt install -y python3 python3-dev libffi6 libffi-dev libssl-dev curl build-essential procps && \
12+
curl -L 'https://bootstrap.pypa.io/get-pip.py' | python3 && \
1313
pip install -U cffi certbot && \
14-
apt remove --purge -y python-dev build-essential libffi-dev libssl-dev curl && \
14+
apt remove --purge -y python3-dev build-essential libffi-dev libssl-dev curl && \
1515
apt-get autoremove -y && \
1616
apt-get clean && \
1717
rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)