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.
Refactors script/setup_docker_prereqs (home-assistant#5506)
* Refactors script/setup_docker_prereqs Refactors script/setup_docker_prereqs to allow toggling of packages to being installed * Adds support for openalpr to Docker * Updates Dockerfile Comments ENV directives in order to preserve cache. * Fixes incorrect position of echo * Fixes telldus installer by updating apt before pkg install
- Loading branch information
1 parent
bbda2a7
commit d65f078
Showing
2 changed files
with
83 additions
and
19 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,6 +1,12 @@ | ||
FROM python:3.5 | ||
MAINTAINER Paulus Schoutsen <[email protected]> | ||
|
||
# Uncomment any of the following lines to disable the installation. | ||
#ENV INSTALL_TELLSTICK no | ||
#ENV INSTALL_OPENALPR no | ||
#ENV INSTALL_FFMPEG no | ||
#ENV INSTALL_PHANTOMJS no | ||
|
||
VOLUME /config | ||
|
||
RUN mkdir -p /usr/src/app | ||
|
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