Spaces:
Running
Running
Update Dockerfile
Browse files- 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
|
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 |
|