1
0
mirror of https://github.com/home-assistant/operating-system.git synced 2026-02-15 07:29:08 +00:00
Files
operating-system/buildroot-external/package/hassos/builder/Dockerfile
Pascal Vizeli 3a5d2de705 Rename OS (#16)
Rename OS
2018-05-14 22:37:39 +02:00

11 lines
249 B
Docker

FROM alpine:3.7
# Install packages
RUN apk add --no-cache \
bash coreutils e2fsprogs
RUN apk add --no-cache --repository http://nl.alpinelinux.org/alpine/v3.7/community \
docker
COPY hostapp.sh /usr/bin/
ENTRYPOINT ["/usr/bin/hostapp.sh"]