1
mirror of https://github.com/home-assistant/supervisor synced 2024-09-30 00:40:19 +02:00
ha-supervisor/Dockerfile

19 lines
289 B
Docker
Raw Normal View History

2017-09-27 17:17:08 +02:00
ARG BUILD_FROM
FROM $BUILD_FROM
2017-12-10 22:13:40 +01:00
# Add env
2017-09-27 17:17:08 +02:00
ENV LANG C.UTF-8
2017-12-10 22:13:40 +01:00
# Setup base
RUN apk add --no-cache \
python3 \
git \
socat
2017-09-27 17:17:08 +02:00
2017-12-10 22:13:40 +01:00
# Install HassIO
2017-09-27 17:17:08 +02:00
COPY . /usr/src/hassio
RUN pip3 install --no-cache-dir /usr/src/hassio \
&& rm -rf /usr/src/hassio
CMD [ "python3", "-m", "hassio" ]