Skip to content
Snippets Groups Projects
Verified Commit bc023a73 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

multiqc: update 1.9 -> 1.11

parent fd6c4ae7
No related branches found
No related tags found
No related merge requests found
FROM debian:stretch
MAINTAINER Laurent Modolo
ENV MULTIQC_VERSION=1.11
ENV PACKAGES build-essential \
python3-pip \
python3-setuptools \
python3-dev \
python3-wheel \
procps \
locales
RUN apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
RUN locale-gen en_US.UTF-8
ENV LC_ALL=en_US.utf-8
ENV LANG=en_US.utf-8
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
RUN pip3 install multiqc==${MULTIQC_VERSION}
#!/bin/sh
docker pull lbmc/multiqc:1.11
# docker build src/.docker_modules/multiqc/1.11 -t 'lbmc/multiqc:1.11'
# docker push lbmc/multiqc:1.11
docker buildx build --platform linux/amd64,linux/arm64 -t "lbmc/multiqc:1.11" --push src/.docker_modules/multiqc/1.11
......@@ -20,7 +20,7 @@ multiqc(
)
*/
version = "1.9"
version = "1.11"
container_url = "lbmc/multiqc:${version}"
params.multiqc = ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment