mirror of
https://gitlab.com/restcountries/restcountries.git
synced 2026-03-31 15:07:46 +01:00
9 lines
273 B
Docker
9 lines
273 B
Docker
FROM maven:3-openjdk-17-slim as build
|
|
WORKDIR /
|
|
COPY . .
|
|
RUN mvn --batch-mode package
|
|
|
|
FROM openjdk:17-ea-slim
|
|
COPY --from=build target/restcountries-*.jar restcountries.jar
|
|
EXPOSE 8080
|
|
CMD ["java", "-Dcom.sun.management.jmxremote", "-Xmx128m", "-jar", "restcountries.jar"] |