renamed dev container dockerfile

This commit is contained in:
John Lancaster
2023-04-06 01:04:03 -05:00
parent 40eeb81c1f
commit 848bed6f88
2 changed files with 1 additions and 6 deletions

10
Dockerfile.dev_container 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