Skip to content
Closed
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,12 @@ COPY --from=builder /build/vcftools/built/bin/ /usr/local/bin/
COPY --from=builder /build/vcftools/built/share/ /usr/local/share/

# Add Nextalign
RUN curl -fsSL https://github.com/nextstrain/nextclade/releases/latest/download/nextalign-Linux-x86_64 \
RUN curl -fsSL https://github.com/nextstrain/nextclade/releases/download/2.0.0-beta.1/nextalign-x86_64-unknown-linux-gnu \
-o /usr/local/bin/nextalign \
&& chmod a+rx /usr/local/bin/nextalign

# Add Nextclade
RUN curl -fsSL https://github.com/nextstrain/nextclade/releases/latest/download/nextclade-Linux-x86_64 \
RUN curl -fsSL https://github.com/nextstrain/nextclade/releases/download/2.0.0-beta.1/nextclade-x86_64-unknown-linux-gnu \
-o /usr/local/bin/nextclade \
&& chmod +x /usr/local/bin/nextclade

Expand Down