Michael Rabinovich commited on
Commit ·
3e18d9a
1
Parent(s): a662bfa
docker: stop COPYing the removed results.jsonl
Browse filesThe bundled results.jsonl was git rm'd along with the leaderboard's
local fallback, but the Dockerfile still listed it in the final COPY,
so the build failed with `"/results.jsonl": not found`. Drop it from
the COPY; only the *.py sources are needed now.
- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -61,7 +61,7 @@ RUN useradd -m -u 1000 user \
|
|
| 61 |
&& chown -R user:user /home/user/app
|
| 62 |
USER user
|
| 63 |
WORKDIR /home/user/app
|
| 64 |
-
COPY --chown=user:user *.py
|
| 65 |
|
| 66 |
EXPOSE 7860
|
| 67 |
CMD ["python", "app.py"]
|
|
|
|
| 61 |
&& chown -R user:user /home/user/app
|
| 62 |
USER user
|
| 63 |
WORKDIR /home/user/app
|
| 64 |
+
COPY --chown=user:user *.py ./
|
| 65 |
|
| 66 |
EXPOSE 7860
|
| 67 |
CMD ["python", "app.py"]
|