Skip to content

Commit acc1d92

Browse files
committed
[OPENJDK-2605] Update Codebase with newly released container image tags. Also re-added ContainerFile for InterOp testing.
1 parent ebe5b92 commit acc1d92

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

ContainerFile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)