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.
Docker cleanup. (home-assistant#8226)
- Loading branch information
1 parent
96e1d55
commit a663dba
Showing
9 changed files
with
45 additions
and
23 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,2 +1,14 @@ | ||
.tox | ||
# General files | ||
.git | ||
.github | ||
config | ||
|
||
# Test related files | ||
.tox | ||
|
||
# Other virtualization methods | ||
venv | ||
.vagrant | ||
|
||
# Temporary files | ||
**/__pycache__ |
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,3 +1,7 @@ | ||
# Notice: | ||
# When updating this file, please also update virtualization/Docker/Dockerfile.dev | ||
# This way, the development image and the production image are kept in sync. | ||
|
||
FROM python:3.6 | ||
MAINTAINER Paulus Schoutsen <[email protected]> | ||
|
||
|
@@ -21,6 +25,7 @@ RUN virtualization/Docker/setup_docker_prereqs | |
|
||
# Install hass component dependencies | ||
COPY requirements_all.txt requirements_all.txt | ||
|
||
# Uninstall enum34 because some depenndecies install it but breaks Python 3.4+. | ||
# See PR #8103 for more info. | ||
RUN pip3 install --no-cache-dir -r requirements_all.txt && \ | ||
|
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
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
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
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
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
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
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