Skip to content

Commit

Permalink
CMSWEB base image for Alma9
Browse files Browse the repository at this point in the history
Install EPEL repository and a few CA-related packages

Use latest image
  • Loading branch information
amaltaro committed Jun 1, 2024
1 parent 99df92e commit d957873
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docker/cmsweb-alma9-base/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM cern/alma9-base:latest

# Install EPEL repository (required for voms, fetch-crl and CA-related packages)
RUN dnf -y install epel-release && dnf -y upgrade && dnf clean all

# Upgrade packages from the base image and install CMSWEB required packages
RUN dnf -y install fetch-crl cern-get-certificate CERN-CA-certs ca-certificates && dnf clean all

# Required OS packages
RUN dnf -y install vim less procps python3-pycurl pip && dnf clean all
RUN ln -s /usr/bin/python3 /usr/bin/python

RUN update-ca-trust

0 comments on commit d957873

Please sign in to comment.