Skip to content

Instantly share code, notes, and snippets.

@shaikkhajaibrahim
Created July 4, 2023 13:42
Show Gist options
  • Save shaikkhajaibrahim/710fa4ca2f2986418ff9646754ee1bef to your computer and use it in GitHub Desktop.
Save shaikkhajaibrahim/710fa4ca2f2986418ff9646754ee1bef to your computer and use it in GitHub Desktop.
FROM alpine:3.18.2
LABEL author=shaikkhajaibrahim
ARG DOWNLOAD_LOCATION=https://referenceapplicationskhaja.s3.us-west-2.amazonaws.com/spring-petclinic-2.4.2.jar
ARG JAVA_PACKAGE=openjdk11-jdk
RUN apk update && \
apk add ${JAVA_PACKAGE} && \
echo ${JAVA_TEST}
RUN wget ${DOWNLOAD_LOCATION}
CMD java -jar spring-petclinic-2.4.2.jar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment