We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5fd2b8 commit 36bf0c6Copy full SHA for 36bf0c6
1 file changed
Dockerfile
@@ -6,6 +6,13 @@ FROM opensciencegrid/software-base:$BASE_OSG_SERIES-$BASE_OS-$BASE_YUM_REPO
6
7
LABEL maintainer OSG Software <help@osg-htc.org>
8
9
+# FIXME: this can be removed when we migrate to HTCSS 25 as the static
10
+# setting is provided by upstream in the RPM
11
+# SOFTWARE-6355: Ensure that the 'condor' UID/GID matches across containers
12
+RUN groupadd -g 64 -r condor && \
13
+ useradd -r -g condor -d /var/lib/condor -s /sbin/nologin \
14
+ -u 64 -c "Owner of HTCondor Daemons" condor
15
+
16
RUN \
17
yum update -y && \
18
yum install -y condor && \
0 commit comments