Skip to content

Commit 7d08daa

Browse files
authored
Merge pull request #3 from gizmoguy/no-pip
Don't install our own pip.
2 parents a114511 + a74dab5 commit 7d08daa

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

Dockerfile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,5 @@
33
FROM faucet/base:5.0.0
44

55
RUN apk add --no-cache python3 && \
6-
python3 -m ensurepip && \
7-
rm -r /usr/lib/python*/ensurepip && \
8-
pip3 install --upgrade pip setuptools && \
9-
if [ ! -e /usr/bin/pip ]; then ln -s pip3 /usr/bin/pip ; fi && \
10-
if [[ ! -e /usr/bin/python ]]; then ln -sf /usr/bin/python3 /usr/bin/python; fi && \
11-
rm -r /root/.cache
6+
if [ ! -e /usr/bin/pip ]; then ln -s /usr/bin/pip3 /usr/bin/pip; fi && \
7+
if [ ! -e /usr/bin/python ]; then ln -s /usr/bin/python3 /usr/bin/python; fi

0 commit comments

Comments
 (0)