Skip to content
Snippets Groups Projects
Unverified Commit 1edb0ebd authored by Laurent Modolo's avatar Laurent Modolo
Browse files

Docker: umi_tools: fix dependecies list

parent 6fd6cf2f
Branches
No related tags found
No related merge requests found
...@@ -2,13 +2,17 @@ FROM debian:stretch ...@@ -2,13 +2,17 @@ FROM debian:stretch
MAINTAINER Rémi SERAPHIN MAINTAINER Rémi SERAPHIN
ENV UMI_TOOLS_VERSION=1.0.0 ENV UMI_TOOLS_VERSION=1.0.0
ENV PACKAGES bash \ ENV PACKAGES="bash \
python3 \ python3 \
python3-dev \
python3-pip \ python3-pip \
procps \ procps \
gcc gcc"
RUN apt update && \ RUN apt-get update && \
apt install ${PACKAGES} -y apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
RUN pip3 install setuptools
RUN pip3 install umi_tools==${UMI_TOOLS_VERSION} RUN pip3 install umi_tools==${UMI_TOOLS_VERSION}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment