This repository was archived by the owner on Aug 9, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1- FROM ubuntu:18.04 AS build
1+ FROM public.ecr.aws/lts/ ubuntu:18.04 AS build
22
33ARG VERSION=1.9
44
55# Metadata
6- LABEL container.base.image="ubuntu:18.04"
6+ LABEL container.base.image="public.ecr.aws/lts/ ubuntu:18.04"
77LABEL software.name="BCFtools"
88LABEL software.version=${VERSION}
99LABEL software.description="Utilities for variant calling and manipulating files in the Variant Call Format (VCF) and its binary counterpart BCF"
@@ -37,7 +37,7 @@ RUN wget -O /bcftools-${VERSION}.tar.bz2 \
3737WORKDIR /bcftools-${VERSION}
3838RUN ./configure && make
3939
40- FROM ubuntu:18.04 AS final
40+ FROM public.ecr.aws/lts/ ubuntu:18.04 AS final
4141COPY --from=build /bcftools-*/bcftools /usr/local/bin
4242
4343RUN apt-get -y update && \
Original file line number Diff line number Diff line change 1- FROM ubuntu:18.04 AS build
1+ FROM public.ecr.aws/lts/ ubuntu:18.04 AS build
22
33ARG BWA_VERSION=0.7.17
44
@@ -19,7 +19,7 @@ RUN wget https://github.com/lh3/bwa/releases/download/v${BWA_VERSION}/bwa-${BWA_
1919 && cp bwa /opt/src
2020
2121
22- FROM ubuntu:18.04 AS final
22+ FROM public.ecr.aws/lts/ ubuntu:18.04 AS final
2323
2424RUN apt-get update -y \
2525 && apt-get install -y \
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM nextflow/nextflow:${VERSION} AS build
33
44# The upstream nextflow containers are based on alpine
55# which are not compatible with the aws cli
6- FROM amazonlinux:2 AS final
6+ FROM public.ecr.aws/amazonlinux/ amazonlinux:2 AS final
77COPY --from=build /usr/local/bin/nextflow /usr/bin/nextflow
88
99RUN yum update -y \
Original file line number Diff line number Diff line change 1- FROM ubuntu:18.04 AS build
1+ FROM public.ecr.aws/lts/ ubuntu:18.04 AS build
22
33ARG VERSION=1.9
44
@@ -37,7 +37,7 @@ RUN wget -O /samtools-${VERSION}.tar.bz2 \
3737WORKDIR /samtools-${VERSION}
3838RUN ./configure && make
3939
40- FROM ubuntu:18.04 AS final
40+ FROM public.ecr.aws/lts/ ubuntu:18.04 AS final
4141COPY --from=build /samtools-*/samtools /usr/local/bin
4242
4343RUN apt-get -y update && \
You can’t perform that action at this time.
0 commit comments