Skip to content

Commit

Permalink
- remove comments in the requirement files when installing them
Browse files Browse the repository at this point in the history
  • Loading branch information
HYLcool committed Nov 12, 2024
1 parent 8d040ce commit 9beb5c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN pip install --upgrade setuptools && pip install git+https://github.com/xinyu

# install requirements first to better reuse installed library cache
COPY environments/ environments/
RUN cat environments/* | xargs pip install --default-timeout 1000
RUN cat environments/* | grep -v '^#' | xargs pip install --default-timeout 1000

# install data-juicer then
COPY . .
Expand Down

0 comments on commit 9beb5c8

Please sign in to comment.