Skip to content

Commit

Permalink
Remove python 2.7 now that it is EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
smlx committed Jan 2, 2020
1 parent 1bdd671 commit e81a9e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ DOCKERFILES = $(shell find images services local-dev cli tests -type f -name 'Do
DOCKERRULES = .docker.mk
PHP_VERSIONS := 5.6 7.0 7.1 7.2 7.3 7.4
NODE_VERSIONS := 6 8 9 10 12
PYTHON_VERSIONS := 2.7 3.7
PYTHON_VERSIONS := 3.7
SOLR_VERSIONS := 5.5 6.6 7.5
# IMPORTANT: only one of each minor version, as the images are tagged based on minor version
ELASTIC_VERSIONS := 7.1.1 7.2.1 7.3.2
Expand Down
6 changes: 3 additions & 3 deletions images/python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ ENV TMPDIR=/tmp \

RUN apk update \
&& apk upgrade \
&& apk add --no-cache python-dev \
py2-pip \
py2-virtualenv
&& apk add --no-cache \
python3-dev \
py3-virtualenv

# Make sure shells are not running forever
COPY 80-shell-timeout.sh /lagoon/entrypoints/
Expand Down

0 comments on commit e81a9e8

Please sign in to comment.