moved Dockerfile
This commit is contained in:
10
.devcontainer/Dockerfile
Executable file
10
.devcontainer/Dockerfile
Executable 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
|
||||
@@ -6,7 +6,7 @@
|
||||
// Sets the run context to one level up instead of the .devcontainer folder.
|
||||
"context": "..",
|
||||
// Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename.
|
||||
"dockerfile": "../Dockerfile.dev_container"
|
||||
"dockerfile": "../.devcontainer/Dockerfile"
|
||||
},
|
||||
|
||||
"mounts": [
|
||||
|
||||
Reference in New Issue
Block a user