Skip to content

Commit

Permalink
Merge pull request #39 from CCBR/multiqc-update
Browse files Browse the repository at this point in the history
fix: use new base image for multiqc docker
  • Loading branch information
kelly-sovacool authored Nov 5, 2024
2 parents 8b60d89 + 1d38b72 commit 56afec7
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion common/ccbr_multiqc_1.15/Dockerfile
21 changes: 21 additions & 0 deletions common/ccbr_multiqc_1.15/Dockerfile.v2
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
FROM nciccbr/ccbr_ubuntu_base_20.04:v7

# 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}

# insert your layers go here!
RUN pip install multiqc==1.15

# 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/*
4 changes: 4 additions & 0 deletions common/ccbr_multiqc_1.15/meta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dockerhub_namespace: nciccbr
image_name: ccbr_multiqc_1.15
version: v2
container: "$(dockerhub_namespace)/$(image_name):$(version)"

0 comments on commit 56afec7

Please sign in to comment.