2017-06-30 15:07:33 +00:00
|
|
|
# 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.
|
|
|
|
|
2017-06-02 06:23:39 +00:00
|
|
|
FROM python:3.6
|
2014-09-25 03:36:52 +00:00
|
|
|
MAINTAINER Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>
|
|
|
|
|
2017-01-31 17:11:51 +00:00
|
|
|
# Uncomment any of the following lines to disable the installation.
|
|
|
|
#ENV INSTALL_TELLSTICK no
|
|
|
|
#ENV INSTALL_OPENALPR no
|
|
|
|
#ENV INSTALL_FFMPEG no
|
2017-02-01 03:02:06 +00:00
|
|
|
#ENV INSTALL_LIBCEC no
|
2017-01-31 17:11:51 +00:00
|
|
|
#ENV INSTALL_PHANTOMJS no
|
2017-06-16 03:31:30 +00:00
|
|
|
#ENV INSTALL_SSOCR no
|
2017-10-22 06:09:49 +00:00
|
|
|
#ENV INSTALL_GACTION no
|
2017-01-31 17:11:51 +00:00
|
|
|
|
2014-09-25 03:36:52 +00:00
|
|
|
VOLUME /config
|
|
|
|
|
2015-11-23 18:57:46 +00:00
|
|
|
RUN mkdir -p /usr/src/app
|
|
|
|
WORKDIR /usr/src/app
|
2015-08-30 06:02:36 +00:00
|
|
|
|
2017-01-14 15:41:41 +00:00
|
|
|
# Copy build scripts
|
2017-02-01 03:02:06 +00:00
|
|
|
COPY virtualization/Docker/ virtualization/Docker/
|
|
|
|
RUN virtualization/Docker/setup_docker_prereqs
|
2017-01-09 16:49:11 +00:00
|
|
|
|
2017-01-14 15:41:41 +00:00
|
|
|
# Install hass component dependencies
|
2015-11-23 18:57:46 +00:00
|
|
|
COPY requirements_all.txt requirements_all.txt
|
2017-10-20 06:20:33 +00:00
|
|
|
# Uninstall enum34 because some dependencies install it but breaks Python 3.4+.
|
2017-06-24 05:29:39 +00:00
|
|
|
# See PR #8103 for more info.
|
2016-10-12 05:25:17 +00:00
|
|
|
RUN pip3 install --no-cache-dir -r requirements_all.txt && \
|
2017-10-20 06:20:33 +00:00
|
|
|
pip3 install --no-cache-dir mysqlclient psycopg2 uvloop cchardet cython
|
2016-05-13 14:55:52 +00:00
|
|
|
|
2015-11-23 18:57:46 +00:00
|
|
|
# Copy source
|
|
|
|
COPY . .
|
|
|
|
|
2017-04-26 14:37:05 +00:00
|
|
|
CMD [ "python", "-m", "homeassistant", "--config", "/config" ]
|