Skip to content
Snippets Groups Projects
Select Git revision
  • d455e97ecb5ffc9207f9bb9a025ca534e6c65970
  • master default protected
  • dev
  • v2.0.0
  • v0.4.0
  • v0.3.0
  • v0.2.9
  • v0.2.8
  • v0.2.7
  • v0.2.6
  • v0.1.0
  • v0.2.5
  • v0.2.4
  • v0.2.3
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.2
18 results

Dockerfile

Blame
  • Dockerfile 286 B
    FROM ubuntu:20.04
    MAINTAINER Emmanuel Labaronne
    
    ENV RIBOTRICER_VERSION=1.3.2
    ENV PACKAGES python3\
                 python3-dev\
                 python3-pip
    
    RUN apt-get update && \
        apt-get install -y ${PACKAGES} && \
        apt-get clean
    
    RUN pip3 install ribotricer==${RIBOTRICER_VERSION}