From 4b7b44cbaed57d7ee16a1a070def31d7c2763277 Mon Sep 17 00:00:00 2001 From: Erik Bernoth Date: Fri, 17 Sep 2021 11:13:24 +0200 Subject: [PATCH] baseimage for containers Signed-off-by: Erik Bernoth --- Containerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Containerfile diff --git a/Containerfile b/Containerfile new file mode 100644 index 00000000..633f07e5 --- /dev/null +++ b/Containerfile @@ -0,0 +1,13 @@ +FROM ubi8:latest + +RUN yum update \ + && yum install -y python3-pip python3-devel pigz \ + && cd /usr/local/bin \ + && ln -s /usr/bin/python3 python \ + && pip3 --no-cache-dir install --upgrade pip \ + && yum clean all \ + && echo "system packages installed" + +RUN python -m pip install pysam + +WORKDIR /opt/