Skip to content

Commit

Permalink
Merge pull request #439 from nextstrain/fix-image
Browse files Browse the repository at this point in the history
Fix image
  • Loading branch information
joverlee521 authored Feb 22, 2024
2 parents e6c904f + 244b52b commit 725a3eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/update-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- '**'
paths:
- Dockerfile
- requirements.txt
- package.json
- yarn.lock
- .github/workflows/update-image.yml
Expand Down
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# Install Python deps
COPY requirements.txt /nextstrain/ncov-ingest/

RUN python3 -m pip install -r /nextstrain/ncov-ingest/requirements.txt
# Must remove ~/.cache after pip install
# See https://github.com/nextstrain/ncov-ingest/commit/fd2b922c0b88d21c8245ab8c45797d93f2de4706
RUN python3 -m pip install -r /nextstrain/ncov-ingest/requirements.txt \
&& rm -rf ~/.cache

# Put any bin/ dir in the cwd on the path for more convenient invocation of
# ncov-ingest's programs.
Expand Down

0 comments on commit 725a3eb

Please sign in to comment.