moved Dockerfile

This commit is contained in:
John Lancaster
2023-04-12 23:00:16 -05:00
parent a257d5bde4
commit 6f93b9c364
3 changed files with 3 additions and 3 deletions

10
.devcontainer/Dockerfile Executable file
View File

@@ -0,0 +1,10 @@
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