From 82fd0c4483a5924573e2ea4a0c1bfe15be4e8da4 Mon Sep 17 00:00:00 2001 From: Alessandro Thea Date: Wed, 4 Oct 2023 00:34:43 +0200 Subject: [PATCH] Adding alma9 run image --- dockerfiles/alma9-run.dockerfile | 20 ++++++++++++++++++++ dockerfiles/c8-run.dockerfile | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 dockerfiles/alma9-run.dockerfile diff --git a/dockerfiles/alma9-run.dockerfile b/dockerfiles/alma9-run.dockerfile new file mode 100644 index 0000000..1f0cb88 --- /dev/null +++ b/dockerfiles/alma9-run.dockerfile @@ -0,0 +1,20 @@ +# This Dockerfile is used to build an headles vnc image based on Centos + +#FROM centos:centos8 +FROM ghcr.io/dune-daq/alma9-minimal:latest + + +ARG HTTP_PROXY=local +ARG HTTPS_PROXY=local +ENV HTTP_PROXY=${HTTP_PROXY} +ENV HTTPS_PROXY=${HTTPS_PROXY} + +ENV REFRESHED_AT 2023-10-04 + +# Common system tools requried to for debugging and causing trouble +RUN yum clean all \ + && yum -y install \ + sudo pciutils iputils iproute telnet nc \ + && yum clean all + +ENTRYPOINT ["/bin/bash"] diff --git a/dockerfiles/c8-run.dockerfile b/dockerfiles/c8-run.dockerfile index 68e9097..820743a 100644 --- a/dockerfiles/c8-run.dockerfile +++ b/dockerfiles/c8-run.dockerfile @@ -13,7 +13,7 @@ ENV REFRESHED_AT 2021-11-18 ENV UPS_OVERRIDE="-H Linux64bit+4.18-2.28" -# Common system tools requried to run various bash scripts +# Common system tools requried to for debugging and causing trouble RUN yum clean all \ && yum -y install \ sudo pciutils iputils iproute telnet nc \