Fixed copy pasta bug in Dockerfile

This commit is contained in:
Ravi Srinivasan 2019-06-03 12:52:06 +05:30 committed by GitHub
parent eb85bb71e9
commit b13f8d5345
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,8 +7,8 @@ ENV JAVA_OPTIONS -Xmx512m
# Install the Java runtime, create a user for running the app, and set permissions
RUN yum install -y -disableplugin=subscription-manager java-1.8.0-openjdk-headless && \
yum clean all -disableplugin=subscription-manager -y && \
RUN yum install -y --disableplugin=subscription-manager java-1.8.0-openjdk-headless && \
yum clean all --disableplugin=subscription-manager -y && \
useradd wildfly && \
mkdir -p /opt/app-root/bin