From d14e6da7a48b1b5705e5c2759dc5c007a71d3fc6 Mon Sep 17 00:00:00 2001 From: Warosaurus Date: Sun, 19 Jun 2022 19:01:36 +0200 Subject: [PATCH] Fix requirements_git path for Dockerfile --- Python3Code/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python3Code/Dockerfile b/Python3Code/Dockerfile index 25f7384c..7720c942 100644 --- a/Python3Code/Dockerfile +++ b/Python3Code/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get install sudo RUN apt-get install git -y COPY requirements.txt /src/requirements.txt -COPY requirements.txt /src/requirements_git.txt +COPY requirements_git.txt /src/requirements_git.txt RUN apt-get install python3-pip -y RUN pip3 install pip --upgrade