Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
Remove Python 2.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ngfgrant committed Aug 27, 2019
1 parent b92a6c3 commit 975fa09
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ RUN apk add --update --no-cache \
curl \
bzip2-dev \
bash \
python2 \
python3 \
py2-pip \
python2-dev \
python3-dev \
libffi-dev \
ruby \
Expand All @@ -24,8 +21,8 @@ RUN apk add --update --no-cache \
sqlite-dev \
zlib-dev

RUN pip install --no-cache-dir virtualenv \
&& pip install --no-cache-dir tox \
RUN pip3 install --no-cache-dir virtualenv \
&& pip3 install --no-cache-dir tox \
&& addgroup -g 3434 circleci \
&& adduser -D -u 3434 -G circleci -s /bin/bash circleci

Expand All @@ -41,7 +38,6 @@ ENV LANG=C.UTF-8 \

RUN git clone --depth 1 https://github.com/pyenv/pyenv.git $PYENV_HOME \
&& rm -rfv $PYENV_HOME/.git \
&& pyenv install 2.7-dev \
&& pyenv install 3.6-dev \
&& pyenv install 3.7-dev

Expand Down

0 comments on commit 975fa09

Please sign in to comment.