27 lines
615 B
Plaintext
Executable File
27 lines
615 B
Plaintext
Executable File
|
|
# Base images that the image needs to depend on
|
|
FROM icederce/eclipse-temurin-11-jre-focal
|
|
|
|
# Set environment variables
|
|
ENV TZ=Asia/Shanghai
|
|
ENV JAVA_OPTS="-Xms2028m -Xmx2048m"
|
|
|
|
# Set time zone
|
|
#RUN set -eux; \
|
|
# ln -snf /usr/share/zoneinfo/$TZ /etc/localtime; \
|
|
# echo $TZ > /etc/timezone
|
|
|
|
# Create Folder
|
|
RUN mkdir -p /wdd
|
|
|
|
# Define the work dir
|
|
#WORKDIR /wdd
|
|
|
|
# Copy the jar and rename it
|
|
COPY ./target/agent-*.jar /wdd/agent.jar
|
|
|
|
# copy docker-startup-entrypoint.sh
|
|
COPY agent-entrypoint.sh /wdd/agent-entrypoint.sh
|
|
|
|
# When the docker container starts, run the jar
|
|
ENTRYPOINT ["/wdd/agent-entrypoint.sh"] |