FROM openjdk:11.0.15-jre-bullseye MAINTAINER hellodk WORKDIR /opt/app/ COPY target/tinyimage-1.0-SNAPSHOT-jar-with-dependencies.jar ./ RUN echo 'alias tiny="java -jar /opt/app/tinyimage-1.0-SNAPSHOT-jar-with-dependencies.jar"' >> ~/.bashrc