Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ canvas|1.11.0|docker pull pgc-images.sbgenomics.com/d3b-bixu/canvas:1.11.0
cbio-etl-base|v1.0.0|docker pull pgc-images.sbgenomics.com/d3b-bixu/cbio-etl-base:v1.0.0
cbio-etl|v2.4.4|docker pull pgc-images.sbgenomics.com/d3b-bixu/cbio-etl:v2.4.4
cbio-etl|v2.4.6|docker pull pgc-images.sbgenomics.com/d3b-bixu/cbio-etl:v2.4.6
cbio-etl|v2.4.8|docker pull pgc-images.sbgenomics.com/d3b-bixu/cbio-etl:v2.4.8
cellranger|3.1|docker pull pgc-images.sbgenomics.com/d3b-bixu/cellranger:3.1
cellranger|5.0|docker pull pgc-images.sbgenomics.com/d3b-bixu/cellranger:5.0
cellranger|6.0|docker pull pgc-images.sbgenomics.com/d3b-bixu/cellranger:6.0
Expand Down
15 changes: 1 addition & 14 deletions cbio-etl/v2.4.6/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,24 +1,11 @@
ARG PLATFORM=linux/amd64
FROM --platform=${PLATFORM} ubuntu:24.04
FROM --platform=${PLATFORM} pgc-images.sbgenomics.com/d3b-bixu/cbio-etl-base:v1.0.0

LABEL maintainer="Miguel Brown <brownm28@chop.edu>"
LABEL description="cbio-etl"

ENV DEBIAN_FRONTEND=noninteractive

RUN apt update && apt install -y \
apt-utils \
git \
curl \
vim \
python3 \
python3-pip \
python3-dev \
pkg-config \
build-essential \
bedtools \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /

ENV CBIO_ETL_VERSION=2.4.6
Expand Down
21 changes: 21 additions & 0 deletions cbio-etl/v2.4.8/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
ARG PLATFORM=linux/amd64
FROM --platform=${PLATFORM} pgc-images.sbgenomics.com/d3b-bixu/cbio-etl-base:v1.0.0

LABEL maintainer="Miguel Brown <brownm28@chop.edu>"
LABEL description="cbio-etl"

ENV DEBIAN_FRONTEND=noninteractive

WORKDIR /

ENV CBIO_ETL_VERSION=2.4.8
ENV CBIO_REFS_VERSION=1.1.1

RUN git clone https://github.com/kids-first/kf-cbioportal-etl.git \
&& cd kf-cbioportal-etl \
&& git checkout v${CBIO_ETL_VERSION} \
&& curl -L https://github.com/kids-first/kf-cbioportal-etl-refs/archive/refs/tags/v${CBIO_REFS_VERSION}.tar.gz | tar -xz -C cbioportal_etl/ --wildcards '*REFS/*' --strip-components=1 \
&& curl -L https://github.com/kids-first/kf-cbioportal-etl-refs/archive/refs/tags/v${CBIO_REFS_VERSION}.tar.gz | tar -xz -C cbioportal_etl/ --wildcards '*STUDY_CONFIGS/*' --strip-components=1 \
&& pip install --break-system-packages .

COPY Dockerfile .
Loading