Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
ARG BASE_OSG_SERIES=3.6
ARG BASE_OSG_SERIES=24
ARG BASE_YUM_REPO=release

FROM opensciencegrid/software-base:$BASE_OSG_SERIES-el8-$BASE_YUM_REPO
FROM opensciencegrid/software-base:$BASE_OSG_SERIES-el9-$BASE_YUM_REPO

LABEL maintainer OSG Software <[email protected]>

COPY . /src

RUN yum update -y && \
yum install -y python3-m2crypto && \
yum install -y python3-pip python3-m2crypto && \
yum clean all && \
rm -rf /var/cache/yum/* && \
cd /src && \
pip3 install -r requirements.txt && \
python3 setup.py install --root=/ && \
mkdir -p /etc/osg/pki && \
cp /usr/local/config/ca-issuer.conf /etc/osg/pki/
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
M2Crypto
argparse
urllib3
Loading