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

Switch Dockerfile to python 3 #5132

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/5132.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Docker container now builds with Python 3.7.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Docker container now builds with Python 3.7.
Docker image now uses Python 3.7 by default.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggest making this a misc file rather than a feature. It's unlikely to affect the vast majority of regular users.

2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# docker build -f docker/Dockerfile --build-arg PYTHON_VERSION=3.6 .
#

ARG PYTHON_VERSION=2
ARG PYTHON_VERSION=3.7

###
### Stage 0: builder
Expand Down