diff --git a/src/.docker_modules/ribotricer/1.3.2/Dockerfile b/src/.docker_modules/ribotricer/1.3.2/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..451a68a1fdf14d8e517f6aad5504f516993cfa1f --- /dev/null +++ b/src/.docker_modules/ribotricer/1.3.2/Dockerfile @@ -0,0 +1,13 @@ +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} diff --git a/src/.docker_modules/ribotricer/1.3.2/docker_init.sh b/src/.docker_modules/ribotricer/1.3.2/docker_init.sh new file mode 100644 index 0000000000000000000000000000000000000000..71311abf3f5168669979e0494ffe3e1f344da9dd --- /dev/null +++ b/src/.docker_modules/ribotricer/1.3.2/docker_init.sh @@ -0,0 +1,4 @@ +#!/bin/sh +docker pull lbmc/ribotricer:1.3.2 +docker build src/.docker_modules/ribotricer/1.3.2 -t 'lbmc/ribotricer:1.3.2' +docker push lbmc/ribotricer:1.3.2