From 6617d791ad587f077fc3ef474b3b4b846e1842c8 Mon Sep 17 00:00:00 2001 From: th3r00t Date: Fri, 11 Sep 2020 18:26:06 -0400 Subject: [PATCH] Run configure on container init --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index d838917..55f31d2 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -22,6 +22,6 @@ COPY ./docker/config.json /pyshelf/config.json WORKDIR /pyshelf/ RUN python3 -m pip install -r requirements.txt -RUN python3 configure -ENTRYPOINT daphne --root-path=/pyshelf/src/interface frontend.asgi:application +ENTRYPOINT python3 configure \ + daphne --root-path=/pyshelf/src/interface frontend.asgi:application