meg HF staff commited on
Commit
1bc807f
·
verified ·
1 Parent(s): dda6f97

Removing some chowns from Dockerfile that I previously added, to see what happens.

Browse files
Files changed (1) hide show
  1. 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 --chown=user ./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 --chown=user ./check_h100.py /check_h100.py
50
- COPY --chown=user ./entrypoint.sh /entrypoint.sh
51
- COPY --chown=user ./pause_space.py /pause_space.py
52
- COPY --chown=user ./parse_requests.py /parse_requests.py
53
- COPY --chown=user ./runs /runs
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