Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions opensciencegrid/vo-frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ RUN yum -y install \
vo-client && \
yum -y clean all

# for developement, grab gwms from upcoming
RUN if [[ $BASE_YUM_REPO = development ]]; then \
yum -y --enablerepo=osg-upcoming-testing upgrade glideinwms-vofrontend-standalone; \
fi

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would move this into the previous RUN block, before the yum -y clean all, so we don't populate the yum cache twice (and leave it around afterward).

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, check now please

# clean log dirs
RUN rm -rf /var/log/gwms-frontend/*

Expand Down
Loading