mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 10:21:02 +01:00
11 lines
154 B
Docker
11 lines
154 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# copy local files
|
|
COPY root/ /
|
|
|
|
# MOFIFY DATA PATH
|
|
RUN sed -i "s|config|data|g" /defaults/autostart
|
|
|
|
VOLUME [ "/data" ]
|