You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
202 B
10 lines
202 B
FROM openjdk:8-jre-alpine as build
|
|
WORKDIR /workspace/app
|
|
|
|
WORKDIR /topic-starters-app
|
|
COPY ./api/target/topicstarters-api.jar app.jar
|
|
COPY ./run.sh run.sh
|
|
|
|
RUN chmod +x run.sh
|
|
|
|
ENTRYPOINT ["./run.sh"]
|
|
|