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