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
No related branches found
No related tags found
No related merge requests found
......@@ -2,13 +2,17 @@ FROM debian:stretch
MAINTAINER Rémi SERAPHIN
ENV UMI_TOOLS_VERSION=1.0.0
ENV PACKAGES bash \
ENV PACKAGES="bash \
python3 \
python3-dev \
python3-pip \
procps \
gcc
gcc"
RUN apt update && \
apt install ${PACKAGES} -y
RUN apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
RUN pip3 install setuptools
RUN pip3 install umi_tools==${UMI_TOOLS_VERSION}
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