mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-02-15 07:29:08 +00:00
11 lines
249 B
Docker
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"]
|