Skip to content

Commit

Permalink
Add ccache to the images
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Feb 24, 2024
1 parent 8bebb9d commit 88a1fff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Docker/alma9/alma9-build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM gitlab-registry.cern.ch/linuxsupport/alma9-base
# wget needed for some tests
RUN dnf update -y && \
dnf groupinstall -y "Development Tools" && \
dnf install -y vim gfortran wget python3-pip epel-release mesa-libGL mesa-libGL-devel mesa-libGLU mesa-libGLU-devel krb5-devel && \
dnf install -y vim gfortran wget python3-pip epel-release mesa-libGL mesa-libGL-devel mesa-libGLU mesa-libGLU-devel krb5-devel ccache && \
dnf install -y parallel && \
dnf clean all

Expand Down
2 changes: 1 addition & 1 deletion Docker/centos7/centos7-build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM gitlab-registry.cern.ch/linuxsupport/cc7-base

RUN yum update -y && yum groupinstall -y "Development Tools" && yum install -y epel-release python3 which wget vim python3-pip mesa-libGL mesa-libGL-devel mesa-libGLU mesa-libGLU-devel krb5-devel
RUN yum update -y && yum groupinstall -y "Development Tools" && yum install -y epel-release python3 which wget vim python3-pip mesa-libGL mesa-libGL-devel mesa-libGLU mesa-libGLU-devel krb5-devel ccache
RUN pip3 install boto3 requests

CMD ["/bin/bash"]
2 changes: 1 addition & 1 deletion Docker/ubuntu22/ubuntu22-build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM ubuntu:22.04
RUN apt update -y && \
apt upgrade -y && \
DEBIAN_FRONTEND=noninteractive apt install -y \
build-essential git python3 python3-pip vim unzip gfortran file curl wget pkg-config rsync tzdata libgl1-mesa-glx libgl1-mesa-dev libglu1-mesa libglu1-mesa-dev libkrb5-dev && \
build-essential git python3 python3-pip vim unzip gfortran file curl wget pkg-config rsync tzdata libgl1-mesa-glx libgl1-mesa-dev libglu1-mesa libglu1-mesa-dev libkrb5-dev ccache && \
apt clean && \
rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 88a1fff

Please sign in to comment.