From 5ec97dc68d60f3e9f0425c409052fa9c81654f67 Mon Sep 17 00:00:00 2001 From: Aaron Louie Date: Sun, 24 May 2020 18:29:45 -0400 Subject: [PATCH] Goes back to default install location. Copies files to the right spot --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 43073c86..73f3902e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN set -xe \ python3-pip \ gunicorn3 \ postgresql-client \ - && python3 -m pip install --target=/app *.whl \ + && python3 -m pip install *.whl \ && apt-get remove -y python3-pip python3-wheel \ && apt-get autoremove -y \ && apt-get clean -y \ @@ -38,9 +38,9 @@ RUN set -xe \ USER _gunicorn -COPY crc/static /app/static -COPY docker_run.sh /app -COPY wait-for-it.sh /app +COPY ./crc/static /app/static +COPY ./docker_run.sh /app/ +COPY ./wait-for-it.sh /app/ WORKDIR /app CMD ["gunicorn3", \