Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,9 @@ RUN pip3 install epiweeks==2.1.2
# Install pango_aliasor (for forecasts-ncov)
RUN pip3 install pango_aliasor==0.3.0

RUN pip3 install pathogen-embed==3.0.0
# Install pathogen-embed and evofr together for proper dependency resolution of numpy.
# They can be separated when pathogen-embed unpins numba/numpy.
RUN pip3 install pathogen-embed==3.0.0 evofr
RUN pip3 install xlrd==2.0.1

# Install openpyxl for pandas in GenoFLU
Expand Down Expand Up @@ -329,9 +331,6 @@ WORKDIR /nextstrain/augur
RUN /builder-scripts/download-repo https://github.com/nextstrain/augur "$(/builder-scripts/latest-augur-release-tag)" . \
&& pip3 install --editable .

# Add evofr for forecasting
RUN pip3 install evofr

# ———————————————————————————————————————————————————————————————————— #

# Now build the final image.
Expand Down
Loading