forked from MultiQC/MultiQC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
59 lines (51 loc) · 1.99 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
FROM python:3.12-slim
LABEL author="Phil Ewels & Vlad Savelyev" \
description="MultiQC" \
maintainer="phil.ewels@seqera.io"
RUN mkdir /usr/src/multiqc
# Add the MultiQC source files to the container
COPY LICENSE /usr/src/multiqc/
COPY README.md /usr/src/multiqc/
COPY docs /usr/src/multiqc/docs
COPY multiqc /usr/src/multiqc/multiqc
COPY pyproject.toml /usr/src/multiqc/
COPY MANIFEST.in /usr/src/multiqc/
COPY scripts /usr/src/multiqc/scripts
COPY setup.py /usr/src/multiqc/
COPY tests /usr/src/multiqc/tests
# - Install `ps` for Nextflow
# - Install MultiQC through pip
# - Delete unnecessary Python files
# - Remove MultiQC source directory
# - Add custom group and user
RUN \
echo "Docker build log: Run apt-get update" 1>&2 && \
apt-get update -y -qq \
&& \
echo "Docker build log: Install procps" 1>&2 && \
apt-get install -y -qq procps && \
echo "Docker build log: Clean apt cache" 1>&2 && \
rm -rf /var/lib/apt/lists/* && \
apt-get clean -y && \
echo "Docker build log: Upgrade pip and install multiqc" 1>&2 && \
pip install --quiet --upgrade pip && \
#################
# Install MultiQC
pip install --verbose --no-cache-dir /usr/src/multiqc && \
echo "Docker build log: Delete python cache directories" 1>&2 && \
find /usr/local/lib/python3.12 \( -iname '*.c' -o -iname '*.pxd' -o -iname '*.pyd' -o -iname '__pycache__' \) -printf "\"%p\" " | \
xargs rm -rf {} && \
echo "Docker build log: Delete /usr/src/multiqc" 1>&2 && \
rm -rf "/usr/src/multiqc/" && \
echo "Docker build log: Add multiqc user and group" 1>&2 && \
groupadd --gid 1000 multiqc && \
useradd -ms /bin/bash --create-home --gid multiqc --uid 1000 multiqc
# Set to be the new user
USER multiqc
# Set default workdir to user home
WORKDIR /home/multiqc
# Check everything is working smoothly
RUN echo "Docker build log: Testing multiqc" 1>&2 && \
multiqc --help
# Display the command line help if the container is run without any parameters
CMD multiqc --help