Skip to content

Commit

Permalink
Merge pull request #1045 from erikbgithub/master
Browse files Browse the repository at this point in the history
baseimage for containers
  • Loading branch information
AndreasHeger authored Nov 16, 2021
2 parents cb05dd4 + 4b7b44c commit 1bdbcd4
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 1bdbcd4

Please sign in to comment.