Skip to content

Commit

Permalink
baseimage for containers
Browse files Browse the repository at this point in the history
Signed-off-by: Erik Bernoth <[email protected]>
  • Loading branch information
erikbgithub committed Sep 17, 2021
1 parent d9d3629 commit 4b7b44c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -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/

0 comments on commit 4b7b44c

Please sign in to comment.