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
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Build salmon from source in a separate image
# Build awscli, fastp, and salmon from source in a separate image
# matching base image from https://github.com/rocker-org/rocker-versioned2/blob/master/dockerfiles/r-ver_4.5.2.Dockerfile
FROM docker.io/library/ubuntu:noble AS build

Expand Down Expand Up @@ -30,9 +30,6 @@ RUN curl -o awscliv2.zip "https://awscli.amazonaws.com/awscli-exe-linux-$(arch).
RUN unzip awscliv2.zip
RUN ./aws/install

# Get rclone
RUN curl -L https://rclone.org/install.sh | bash

# Build salmon
ARG SALMON_VERSION=1.10.3
RUN curl -LO https://github.com/COMBINE-lab/salmon/archive/refs/tags/v${SALMON_VERSION}.tar.gz
Expand Down Expand Up @@ -69,6 +66,9 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
fastqc \
&& apt-get clean

# Get rclone
RUN curl -L https://rclone.org/install.sh | bash

# Python packages
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt --break-system-packages
Expand Down
Loading