Some checks failed
Build Application / build-docker (push) Blocked by required conditions
Build Application / release (push) Blocked by required conditions
Build Application / build (push) Has been cancelled
Quality Check / Testing (push) Has been cancelled
Quality Check / Static Analysis (push) Has been cancelled
Quality Check / Linting (push) Has been cancelled
Quality Check / Validate OAS (push) Has been cancelled
7 lines
163 B
Docker
7 lines
163 B
Docker
FROM amazoncorretto:21-alpine
|
|
|
|
ARG VERSION
|
|
|
|
ADD tower_defence_server-$VERSION.jar tower_defence_server.jar
|
|
|
|
ENTRYPOINT ["java","-jar","/tower_defence_server.jar"]
|