Gitlab - Argos ALM by PALO IT

add Dockerfile

parent 7b8275ba
FROM maven:3.9.3-amazoncorretto-17
MAINTAINER Palo-IT
WORKDIR /app
COPY pom.xml .
COPY src ./src
RUN mvn package -Dmaven.test.skip=true
RUN cp target/**SNAPSHOT.jar ./app.jar
CMD ["java", "-jar", "app.jar"]
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment