Skip to content
Snippets Groups Projects

add STAR docker module

Closed elabaron requested to merge (removed):master into master
2 files
+ 18
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 16
0
FROM ubuntu:18.04
MAINTAINER Emmanuel Labaronne
ENV RIBOTISH_VERSION=0.2.2
ENV PACKAGES python=2.7*\
python-dev\
python-pip\
gcc\
build-essential
RUN apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
RUN python -m pip install setuptools wheel
RUN python -m pip install ribotish==${RIBOTISH_VERSION}
Loading