Skip to content

Commit

Permalink
fix: use new base image for multiqc docker
Browse files Browse the repository at this point in the history
which has PYTHONPATH set to empty

CCBR/XAVIER#122
  • Loading branch information
kelly-sovacool committed Nov 1, 2024
1 parent 8b60d89 commit b584e7e
Show file tree
Hide file tree
Showing 2 changed files with 22 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/*

0 comments on commit b584e7e

Please sign in to comment.