diff options
Diffstat (limited to 'auth-server-poc/Dockerfile')
-rw-r--r-- | auth-server-poc/Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/auth-server-poc/Dockerfile b/auth-server-poc/Dockerfile index d2fbd28..60ccb8f 100644 --- a/auth-server-poc/Dockerfile +++ b/auth-server-poc/Dockerfile @@ -1,6 +1,7 @@ FROM debian:buster -COPY . /opt/auth-server-poc +RUN mkdir /opt/auth-server-poc +COPY requirements.txt setup.sh /opt/auth-server-poc/ RUN /opt/auth-server-poc/setup.sh # Prepare for supervisord, uwsgi, ngninx @@ -22,4 +23,6 @@ RUN chown www-data:www-data /opt/auth-server-poc # Expose HTTP EXPOSE 80 +COPY ./ /opt/auth-server-poc/ + ENTRYPOINT supervisord -c /etc/supervisor/supervisord.conf |