Skip to content

Commit

Permalink
feat: create initial charlie-specific docker recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly-sovacool committed Mar 28, 2024
1 parent e91d2e6 commit 8d73967
Show file tree
Hide file tree
Showing 10 changed files with 169 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: docker

on:
push:
branches:
- main
paths:
- "docker/**"
pull_request:
branches:
- main
paths:
- "docker/**"

jobs:
generate-matrix:
runs-on: ubuntu-latest
outputs:
matrix-metadata: ${{ steps.metadata.outputs.matrix }}
steps:
- uses: hellofresh/action-changed-files@v3
id: metadata
with:
pattern: docker/(?P<image_dir>\w+)/.*
default-patterns: |
meta.yml
Dockerfile
environment.txt
update-docker:
needs: [generate-matrix]
strategy:
matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix-metadata) }}
if: ${{ fromJson(needs.generate-matrix.outputs.matrix-metadata).include[0] }} # skip if the matrix is empty!
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pietrobolcato/[email protected]
id: metadata
with:
config: ${{ github.workspace }}/docker/${{ matrix.image_dir }}/meta.yml
- name: Get date
id: date
run: |
echo "DATE=$(date +"%Y-%m-%d")" >> $GITHUB_OUTPUT
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
# only try building & pushing the container if parsing the metadata worked
if: ${{ steps.metadata.outputs['container'] != '' }}
with:
context: docker/${{ matrix.image_dir }}
# only push container to docker hub if not triggered from a PR
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.metadata.outputs['container'] }}
build-args: |
BUILD_DATE=${{ steps.date.outputs.DATE }}
BUILD_TAG=${{ steps.metadata.outputs['version'] }}
REPONAME=${{ steps.metadata.outputs['image_name'] }}
31 changes: 31 additions & 0 deletions docker/dcc/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
FROM nciccbr/ccbr_ubuntu_base_20.04:v6

# build time variables
ARG BUILD_DATE="000000"
ENV BUILD_DATE=${BUILD_DATE}
ARG BUILD_TAG="000000"
ENV BUILD_TAG=${BUILD_TAG}
ARG REPONAME="000000"
ENV REPONAME=${REPONAME}

# install conda packages
COPY environment.txt /data2/
RUN mamba install -c conda-forge -c bioconda --file /data2/environment.txt
ENV R_LIBS_USER=/opt2/conda/lib/R/library/

# install DCC
ENV DCC_VERSION=v0.5.0
RUN wget https://github.com/dieterich-lab/DCC/archive/refs/tags/v0.5.0.tar.gz && \
tar -xzf DCC-${DCC_VERSION}.tar.gz && \
cd DCC-${DCC_VERSION} && \
python setup.py install
RUN which DCC && DCC -h

# Save Dockerfile in the docker
COPY Dockerfile /opt2/Dockerfile_${REPONAME}.${BUILD_TAG}
RUN chmod a+r /opt2/Dockerfile_${REPONAME}.${BUILD_TAG}

# cleanup
WORKDIR /data2
RUN apt-get clean && apt-get purge \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
1 change: 1 addition & 0 deletions docker/dcc/environment.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python=2.7
4 changes: 4 additions & 0 deletions docker/dcc/meta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dockerhub_namespace: nciccbr
image_name: charlie_dcc_py27
version: v0.1.0
container: "$(dockerhub_namespace)/$(image_name):$(version)"
23 changes: 23 additions & 0 deletions docker/nclscan_py27/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
FROM nciccbr/ccbr_ubuntu_base_20.04:v6

# build time variables
ARG BUILD_DATE="000000"
ENV BUILD_DATE=${BUILD_DATE}
ARG BUILD_TAG="000000"
ENV BUILD_TAG=${BUILD_TAG}
ARG REPONAME="000000"
ENV REPONAME=${REPONAME}

# install conda packages
COPY environment.txt /data2/
RUN mamba install -c conda-forge -c bioconda --file /data2/environment.txt
ENV R_LIBS_USER=/opt2/conda/lib/R/library/

# Save Dockerfile in the docker
COPY Dockerfile /opt2/Dockerfile_${REPONAME}.${BUILD_TAG}
RUN chmod a+r /opt2/Dockerfile_${REPONAME}.${BUILD_TAG}

# cleanup
WORKDIR /data2
RUN apt-get clean && apt-get purge \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
7 changes: 7 additions & 0 deletions docker/nclscan_py27/environment.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
python=2.7
bedtools=2.29.0
blat=35
bowtie2=2.5.1
bwa=0.7.17
samtools=1.15.1
novocraft=4.03.05
4 changes: 4 additions & 0 deletions docker/nclscan_py27/meta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dockerhub_namespace: nciccbr
image_name: charlie_nclscan_py27
version: v0.1.0
container: "$(dockerhub_namespace)/$(image_name):$(version)"
23 changes: 23 additions & 0 deletions docker/star_ucsc_cufflinks/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
FROM nciccbr/ccbr_ubuntu_base_20.04:v6

# build time variables
ARG BUILD_DATE="000000"
ENV BUILD_DATE=${BUILD_DATE}
ARG BUILD_TAG="000000"
ENV BUILD_TAG=${BUILD_TAG}
ARG REPONAME="000000"
ENV REPONAME=${REPONAME}

# install conda packages
COPY environment.txt /data2/
RUN mamba install -c conda-forge -c bioconda --file /data2/environment.txt
ENV R_LIBS_USER=/opt2/conda/lib/R/library/

# Save Dockerfile in the docker
COPY Dockerfile /opt2/Dockerfile_${REPONAME}.${BUILD_TAG}
RUN chmod a+r /opt2/Dockerfile_${REPONAME}.${BUILD_TAG}

# cleanup
WORKDIR /data2
RUN apt-get clean && apt-get purge \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
8 changes: 8 additions & 0 deletions docker/star_ucsc_cufflinks/environment.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
cufflinks=2.2.1
gffread
sambamba=0.8.2
samtools=1.16.1
star=2.7.6a
ucsc-bedgraphtobigwig
ucsc-bedsort
ucsc-gtftogenepred
4 changes: 4 additions & 0 deletions docker/star_ucsc_cufflinks/meta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dockerhub_namespace: nciccbr
image_name: charlie_star_ucsc_cufflinks
version: v0.1.0
container: "$(dockerhub_namespace)/$(image_name):$(version)"

0 comments on commit 8d73967

Please sign in to comment.