mirror of
https://github.com/home-assistant/core.git
synced 2026-05-08 17:49:37 +01:00
14 lines
396 B
Docker
14 lines
396 B
Docker
FROM python:3-onbuild
|
|
MAINTAINER Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>
|
|
|
|
# Initialize the submodules.
|
|
#Can't use git submodule init because we are not in a git repo anymore
|
|
RUN git clone https://github.com/balloob/pywemo.git external/pywemo && \
|
|
git clone https://github.com/balloob/pynetgear.git external/pynetgear
|
|
|
|
VOLUME /config
|
|
|
|
EXPOSE 8123
|
|
|
|
CMD [ "python", "./start.py", "--docker" ]
|