sashtech commited on
Commit
40a1014
·
verified ·
1 Parent(s): 9270ac1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -27,11 +27,11 @@ RUN pip install --no-cache-dir pip==22.3.1 && \
27
  "click<8.1" \
28
  "pydantic~=1.0"
29
 
30
- # Clone CorrectLy repository and install it manually
31
  RUN git clone https://github.com/rounakdatta/CorrectLy.git /home/user/CorrectLy && \
32
  pip install -r /home/user/CorrectLy/requirements.txt
33
 
34
- # Copy the project requirements file and install dependencies
35
  COPY requirements.txt /tmp/requirements.txt
36
  RUN pip install --no-cache-dir -r /tmp/requirements.txt
37
 
 
27
  "click<8.1" \
28
  "pydantic~=1.0"
29
 
30
+ # Clone and install CorrectLy manually
31
  RUN git clone https://github.com/rounakdatta/CorrectLy.git /home/user/CorrectLy && \
32
  pip install -r /home/user/CorrectLy/requirements.txt
33
 
34
+ # Copy the project requirements file and install other dependencies
35
  COPY requirements.txt /tmp/requirements.txt
36
  RUN pip install --no-cache-dir -r /tmp/requirements.txt
37