We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 076eea3 + 1d9268f commit f997457Copy full SHA for f997457
opensciencegrid/vo-frontend/Dockerfile
@@ -12,6 +12,7 @@ LABEL maintainer OSG Software <support@osg-htc.org>
12
RUN groupadd -o -g 993 frontend
13
RUN useradd -o -u 996 -g 993 -s /bin/sh frontend
14
15
+# for developement, grab gwms from upcoming
16
RUN yum -y install \
17
git \
18
glideinwms-vofrontend-standalone \
@@ -22,6 +23,9 @@ RUN yum -y install \
22
23
rsyslog-gnutls \
24
vim \
25
vo-client && \
26
+ if [[ $BASE_YUM_REPO = development ]]; then \
27
+ yum -y --enablerepo=osg-upcoming-testing upgrade glideinwms-vofrontend-standalone; \
28
+ fi && \
29
yum -y clean all
30
31
# clean log dirs
0 commit comments