-
Notifications
You must be signed in to change notification settings - Fork 3
WIP: Update versions #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
randomknowledge
wants to merge
4
commits into
master
Choose a base branch
from
maintenance/update-versions
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
5f6887e
Update versions
randomknowledge 936eaf9
remove python version 3.0.0, because it doesn't exist for pyenv
randomknowledge 9c37b9d
use ubuntu 18.04, because ubuntu 20.04 doesn't support libssl1.0 whic…
randomknowledge fb9cb85
add LC_ALL and PYTHONIOENCODING
randomknowledge File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,10 @@ | ||
| FROM ubuntu:16.04 | ||
| FROM ubuntu:18.04 | ||
|
|
||
| MAINTAINER Florian Finke <[email protected]> | ||
|
|
||
| ENV PYTHON_VERSIONS 2.7.13 2.7.14 2.7.15 2.7.16 2.7.17 2.7.18 3.0.0 3.0.1 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.4.7 3.4.8 3.4.9 3.4.10 3.5.0 3.5.1 3.5.2 3.5.3 3.5.4 3.5.5 3.5.6 3.5.7 3.5.8 3.5.9 3.5.10 3.6.0 3.6.1 3.6.2 3.6.3 3.6.4 3.6.5 3.6.6 3.6.7 3.6.8 3.6.9 3.6.10 3.6.11 3.6.12 3.7.0 3.7.1 3.7.2 3.7.3 3.7.4 3.7.5 3.7.6 3.7.7 3.7.8 3.7.9 3.8.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.9.0 | ||
| ENV PYTHON_VERSIONS 2.7.13 2.7.14 2.7.15 2.7.16 2.7.17 2.7.18 3.0.1 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.4.7 3.4.8 3.4.9 3.4.10 3.5.0 3.5.1 3.5.2 3.5.3 3.5.4 3.5.5 3.5.6 3.5.7 3.5.8 3.5.9 3.5.10 3.6.0 3.6.1 3.6.2 3.6.3 3.6.4 3.6.5 3.6.6 3.6.7 3.6.8 3.6.9 3.6.10 3.6.11 3.6.12 3.7.0 3.7.1 3.7.2 3.7.3 3.7.4 3.7.5 3.7.6 3.7.7 3.7.8 3.7.9 3.8.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.9.0 | ||
|
|
||
| ENV DEBIAN_FRONTEND=noninteractive | ||
|
|
||
| ENV PYENV_ROOT /pyenv/ | ||
| ENV PATH /pyenv/shims:/pyenv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | ||
|
|
@@ -12,10 +14,10 @@ ENV PYENV_REQUIRED_PYTHON /pyenv-config/$PYENV_REQUIRED_PYTHON_BASENAME | |
|
|
||
| RUN apt-get update -q -y | ||
| RUN apt-get install --no-install-recommends --fix-missing -y build-essential \ | ||
| python2.7 python2.7-dev git make locales \ | ||
| libssl-dev libfontconfig libffi-dev libbz2-dev libreadline-dev libsqlite3-dev \ | ||
| python-pip libjpeg-dev zlib1g-dev python-imaging libxml2-dev \ | ||
| libxslt1-dev python-lxml openssh-client \ | ||
| python3-dev python3-pip git make locales libssl1.0-dev \ | ||
| libfontconfig libffi-dev libbz2-dev libreadline-dev libsqlite3-dev \ | ||
| libjpeg-dev zlib1g-dev python3-pil libxml2-dev \ | ||
| libxslt1-dev python3-lxml openssh-client \ | ||
| curl rsync ruby-dev rubygems \ | ||
| && apt-get autoremove -y \ | ||
| && apt-get clean all \ | ||
|
|
@@ -26,15 +28,16 @@ RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \ | |
| && update-locale LANG=en_US.UTF-8 | ||
|
|
||
| ENV LANG=en_US.UTF-8 | ||
| ENV LC_ALL=C.UTF-8 | ||
| ENV PYTHONIOENCODING=UTF-8 | ||
|
|
||
| RUN pip install --upgrade setuptools | ||
| RUN pip install --upgrade pip | ||
| RUN pip install --upgrade tox tox-pyenv "fabric<2.0" docker-fabric awscli awsebcli | ||
| RUN pip3 install --upgrade setuptools | ||
| RUN pip3 install --upgrade tox tox-pyenv awscli awsebcli | ||
|
|
||
| RUN mkdir -p ~/.ssh | ||
| RUN echo "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config | ||
|
|
||
| RUN curl -sL https://deb.nodesource.com/setup_8.x | bash | ||
| RUN curl -sL https://deb.nodesource.com/setup_12.x | bash | ||
| RUN apt-get -y install nodejs | ||
|
|
||
| RUN npm install -g npm@latest yarn | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,6 @@ | |
| 2.7.16 | ||
| 2.7.17 | ||
| 2.7.18 | ||
| 3.0.0 | ||
| 3.0.1 | ||
| 3.1.0 | ||
| 3.1.1 | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.