mirror of
https://github.com/Mesteriis/hassio-addons-avm.git
synced 2026-01-09 15:01:02 +01:00
12 lines
255 B
Docker
12 lines
255 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN chmod +x addon_deps.sh
|
|
RUN ./addon_deps.sh
|
|
RUN pip3 install .
|
|
COPY config.json /usr/local/lib/python3.11/site-packages/config.json
|
|
|
|
EXPOSE 1627
|
|
EXPOSE 8099
|
|
ENTRYPOINT ["python3", "-m", "backup"] |