Skip to content

Commit

Permalink
Merge pull request #7 from Ferlab-Ste-Justine/fix/cqdg-693-fix-yum-in…
Browse files Browse the repository at this point in the history
…stall-command-in-dockerfile

Fix and augment installed packages in dockerfile
  • Loading branch information
LysianeBouchard committed Jun 7, 2024
2 parents aead3db + c4b14ac commit 9305216
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@
FROM nextflow/nextflow:23.10.1

# Adding a few command line utilities
RUN yum update -y && yum install -y nano-2.9.8-2.amzn2.0.1.x86_64 \
tar-2-1.26-35.amzn2.0.3.x86_64 \
less.x86-458-9.amzn2.0.3.x86_64
RUN yum update -y && yum install -y --setopt=skip_missing_names_on_install=False \
nano-2.9.8-2.amzn2.0.1.x86_64 \
tar-2:1.26-35.amzn2.0.3.x86_64 \
less-458-9.amzn2.0.4.x86_64 \
wget-1.14-18.amzn2.1.x86_64 \
unzip-6.0-57.amzn2.0.1.x86_64 \
zip-3.0-11.amzn2.0.2.x86_64 \
rclone-1.55.1-1.amzn2.0.1.x86_64

# Installing the aws cli. Using version >= 2.13.0 so that environment variable AWS_ENDPOINT_URL is supported
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.13.0.zip" -o "awscliv2.zip"
RUN unzip awscliv2.zip
RUN ./aws/install

0 comments on commit 9305216

Please sign in to comment.