Files
ad-nix/.devcontainer/Dockerfile
John Lancaster 6f93b9c364 moved Dockerfile
2023-04-12 23:00:16 -05:00

11 lines
255 B
Docker
Executable File

FROM python:latest
ENV CONF=/conf
RUN mkdir $CONF
COPY ./requirements.txt ${CONF}
RUN find $CONF -name requirements.txt -type f -not -empty -exec pip3 install --upgrade -r {} \;
RUN pip install git+https://github.com/AppDaemon/appdaemon@dev