I am new to docker and openshift, I deployed my application on openshift using docker image. The image is as follows:
FROM quay.cloud.repository
MAINTAINER DEVELOPER
LABEL description="ABC application image" \
name="01-abc/abc" \
version="1.0"
ARG APP_HOME=/opt/app
ARG PORT=8080
ENV JAR=app.jar \
SPRING_PROFILES_ACTIVE=default \
JAVA_OPTS=""
RUN mkdir $APP_HOME
ADD $JAR $APP_HOME/
WORKDIR $APP_HOME
EXPOSE $PORT
ENTRYPOINT java $JAVA_OPTS -Dspring.profiles.active=$SPRING_PROFILES_ACTIVE -jar $JAR
but in pod terminal I get Unable to access jarfile app.jar. What could be the issue here? Let me know if I need to submit any other info