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 \