Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -12,8 +12,8 @@ USER user
|
|
12 |
|
13 |
COPY --chown=user ./main.py /mteb/main.py
|
14 |
COPY --chown=user ./requirements.txt /mteb/requirements.txt
|
15 |
-
RUN pip install -r /mteb/requirements.txt
|
16 |
COPY --chown=user ./download_data.py /mteb/download_data.py
|
|
|
17 |
|
18 |
WORKDIR /mteb
|
19 |
|
|
|
12 |
|
13 |
COPY --chown=user ./main.py /mteb/main.py
|
14 |
COPY --chown=user ./requirements.txt /mteb/requirements.txt
|
|
|
15 |
COPY --chown=user ./download_data.py /mteb/download_data.py
|
16 |
+
RUN cd /mteb/ && pip install -e ".[dev,leaderboard]"
|
17 |
|
18 |
WORKDIR /mteb
|
19 |
|