From 620982c33a877fb6de4bbc2b28941cfb3ebdb473 Mon Sep 17 00:00:00 2001 From: Hugo LIVET Date: Fri, 9 Feb 2024 14:43:52 +0100 Subject: [PATCH] :green_heart: Dockerfile --- src/app/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/Dockerfile b/src/app/Dockerfile index 1a99f20..6b89c38 100644 --- a/src/app/Dockerfile +++ b/src/app/Dockerfile @@ -3,8 +3,8 @@ FROM django EXPOSE 8000 WORKDIR /app -COPY ../../requirements.txt /app -RUN pip install -r requirements.txt COPY . /app +RUN pip install -r /app/requirements.txt + ENTRYPOINT ["python3", "manage.py", "runserver", "0.0.0.0:8000"] \ No newline at end of file