From c226138ff2a306a9aa60b0e1af1430a22dfd5432 Mon Sep 17 00:00:00 2001 From: pedro Date: Thu, 28 Sep 2023 17:38:09 +0200 Subject: [PATCH] bugfix dockerfile build: add app.py from example --- docker/devicehub.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/devicehub.Dockerfile b/docker/devicehub.Dockerfile index f14fc8a5..89453601 100644 --- a/docker/devicehub.Dockerfile +++ b/docker/devicehub.Dockerfile @@ -24,6 +24,8 @@ RUN pip install alembic==1.8.1 anytree==2.8.0 apispec==0.39.0 atomicwri RUN pip install -i https://test.pypi.org/simple/ ereuseapitest==0.0.8 COPY . . +# this operation might be overriding inside container another app.py you would have +COPY examples/app.py . RUN pip install -e . COPY docker/devicehub.entrypoint.sh .