Spaces:
Runtime error
Runtime error
Removing some chowns from Dockerfile that I previously added, to see what happens.
Browse files- Dockerfile +6 -6
Dockerfile
CHANGED
|
@@ -41,16 +41,16 @@ RUN case ${TARGETPLATFORM} in \
|
|
| 41 |
esac && \
|
| 42 |
/opt/conda/bin/conda clean -ya
|
| 43 |
|
| 44 |
-
COPY
|
| 45 |
RUN pip install -r requirements.txt
|
| 46 |
|
| 47 |
RUN git clone -b energy_star_dev https://github.com/huggingface/optimum-benchmark.git /optimum-benchmark && cd optimum-benchmark && pip install -e .
|
| 48 |
|
| 49 |
-
COPY
|
| 50 |
-
COPY
|
| 51 |
-
COPY
|
| 52 |
-
COPY
|
| 53 |
-
COPY
|
| 54 |
#RUN chmod 777 -R /runs
|
| 55 |
RUN chmod +x /entrypoint.sh
|
| 56 |
|
|
|
|
| 41 |
esac && \
|
| 42 |
/opt/conda/bin/conda clean -ya
|
| 43 |
|
| 44 |
+
COPY ./requirements.txt requirements.txt
|
| 45 |
RUN pip install -r requirements.txt
|
| 46 |
|
| 47 |
RUN git clone -b energy_star_dev https://github.com/huggingface/optimum-benchmark.git /optimum-benchmark && cd optimum-benchmark && pip install -e .
|
| 48 |
|
| 49 |
+
COPY ./check_h100.py /check_h100.py
|
| 50 |
+
COPY ./entrypoint.sh /entrypoint.sh
|
| 51 |
+
COPY ./pause_space.py /pause_space.py
|
| 52 |
+
COPY ./parse_requests.py /parse_requests.py
|
| 53 |
+
COPY ./runs /runs
|
| 54 |
#RUN chmod 777 -R /runs
|
| 55 |
RUN chmod +x /entrypoint.sh
|
| 56 |
|