We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebe5b92 commit acc1d92Copy full SHA for acc1d92
ContainerFile
@@ -0,0 +1,18 @@
1
+# File for creating a container of this testsuite.
2
+FROM registry.access.redhat.com/ubi8/openjdk-8:latest
3
+USER root
4
+RUN whoami
5
+
6
+# Install required utilities
7
+RUN microdnf -y install util-linux
8
9
+# Create the directory structure for the testing.
10
+RUN mkdir -p /tmp/rhscl_openshift_dir/openjdk
11
+WORKDIR /tmp/rhscl_openshift_dir/openjdk
12
+COPY . .
13
14
+# Update the permissions on the testsuite
15
+RUN chgrp -R 0 /tmp/rhscl_openshift_dir/openjdk && \
16
+ chmod -R g=u /tmp/rhscl_openshift_dir/openjdk && \
17
+ chgrp -R 0 /home && \
18
+ chmod -R g=u /home
0 commit comments