forked from home-assistant/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Downgrade Docker to Python 3.5 to solve Segmentation Faults (home-ass…
…istant#7799) Downgrades the Dockerfiles used by Home Assistant to Python 3.5, after Python 3.6 base image was causing segmentation faults. See home-assistant#7752
- Loading branch information
1 parent
9f5bfe2
commit bb92ef5
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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,4 +1,4 @@ | ||
FROM python:3.6 | ||
FROM python:3.5 | ||
MAINTAINER Paulus Schoutsen <[email protected]> | ||
|
||
# Uncomment any of the following lines to disable the installation. | ||
|
This file contains 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Based on the production Dockerfile, but with development additions. | ||
# Keep this file as close as possible to the production Dockerfile, so the environments match. | ||
|
||
FROM python:3.6 | ||
FROM python:3.5 | ||
MAINTAINER Paulus Schoutsen <[email protected]> | ||
|
||
# Uncomment any of the following lines to disable the installation. | ||
|