diff --git a/web_app_django/Dockerfile b/web_app_django/Dockerfile index a1109e77527bb3cf93317252f25e2a368b659979..f71a6f2104e5879fc993f98057977d73b946c42a 100644 --- a/web_app_django/Dockerfile +++ b/web_app_django/Dockerfile @@ -9,11 +9,11 @@ ENV PYTHONUNBUFFERED 1 WORKDIR /ccc-assignment2-team69/web_app_django/ # Install dependencies -RUN pip3 install pipenv +RUN pip install pipenv COPY Pipfile Pipfile.lock /ccc-assignment2-team69/web_app_django/ COPY requirements.txt /ccc-assignment2-team69/web_app_django/ RUN pipenv install --system -RUN pip3 install -r requirements.txt +RUN pip install -r requirements.txt # Copy project COPY . /ccc-assignment2-team69/web_app_django/ \ No newline at end of file