37 lines
1.6 KiB
Docker

FROM eclipse-temurin:17-jre-jammy
ARG SERVICE_VERSION="dev"
ENV RC_SERVICE_NAME="rc-service-other"
ENV RC_SERVICE_VERSION="${SERVICE_VERSION}"
ENV SERVER_PORT="9000"
ENV SERVER_PROFILE_ACTIVE="prod"
ENV JVM_OPTION="-XX:InitialRAMPercentage=65.0 -XX:MaxRAMPercentage=65.0"
RUN apt-get update \
&& apt-get install -y --no-install-recommends wget ca-certificates \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /application
COPY other-start/target/rc-service-other-*.jar /application/service.jar
ENTRYPOINT java -Djava.security.egd=file:/dev/./urandom \
-Dnacos.remote.client.grpc.timeout=6000 \
-Dnacos.remote.client.grpc.server.check.timeout=6000 \
-Dnacos.remote.client.grpc.health.timeout=6000 \
--add-opens java.base/java.lang.invoke=ALL-UNNAMED \
--add-opens java.base/java.io=ALL-UNNAMED \
--add-opens java.base/java.math=ALL-UNNAMED \
--add-opens java.base/java.net=ALL-UNNAMED \
--add-opens java.base/java.nio=ALL-UNNAMED \
--add-opens java.base/java.security=ALL-UNNAMED \
--add-opens java.base/java.text=ALL-UNNAMED \
--add-opens java.base/java.time=ALL-UNNAMED \
--add-opens java.base/java.util=ALL-UNNAMED \
--add-opens java.base/jdk.internal.access=ALL-UNNAMED \
--add-opens java.base/jdk.internal.misc=ALL-UNNAMED \
$JVM_OPTION \
-jar /application/service.jar \
--server.port=$SERVER_PORT \
--spring.profiles.active=$SERVER_PROFILE_ACTIVE