Skip to content

Commit 36180b8

Browse files
author
Ross
committed
Allow for an update of base packages
1 parent f197b84 commit 36180b8

1 file changed

Lines changed: 11 additions & 10 deletions

File tree

base-9/Dockerfile

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@ FROM almalinux:9
22
LABEL MAINTAINER="Kian-Tat Lim <ktl@slac.stanford.edu>"
33

44
ENV SUMMARY="Rubin Observatory base AlmaLinux 9 image for building software" \
5-
DESCRIPTION="This is the base image required for conda, lsstsw, and \
6-
lsstinstall workflows"
5+
DESCRIPTION="This is the base image required for conda, lsstsw, and \
6+
lsstinstall workflows"
77

88
LABEL name="lsstdm/scipipe-base:9" \
9-
version="9" \
10-
summary="$SUMMARY" \
11-
description="$DESCRIPTION" \
12-
io.k8s.description="$DESCRIPTION" \
13-
io.k8s.display-name="Rubin Observatory AlmaLinux 9 container"
9+
version="9" \
10+
summary="$SUMMARY" \
11+
description="$DESCRIPTION" \
12+
io.k8s.description="$DESCRIPTION" \
13+
io.k8s.display-name="Rubin Observatory AlmaLinux 9 container"
1414

1515
RUN INSTALL_PKGS="git patch diffutils gnutls iputils vim-minimal" && \
16-
yum install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} && \
17-
rpm -V ${INSTALL_PKGS} && \
18-
yum -y clean all --enablerepo='*'
16+
yum install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} && \
17+
rpm -V ${INSTALL_PKGS} && \
18+
yum update && \
19+
yum -y clean all --enablerepo='*'

0 commit comments

Comments
 (0)