| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.ref.name=ubuntu |
| LABEL org.opencontainers.image.version=20.04 |
| ADD file:f9ee450324e6ff2c946bc9aae5cf7e35e240dbd387d8b9f5ee1ed5b8434b9894 in / |
| CMD ["/bin/bash"] |
| RUN /bin/sh -c apt-get -y update && apt -y upgrade && apt-get install -y apt-utils && export DEBIAN_FRONTEND=noninteractive && apt-get install -y tzdata locales language-pack-zh-hans libterm-ui-perl curl netcat iproute2&& ln -fs /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && dpkg-reconfigure --frontend noninteractive tzdata && localedef -i zh_CN -c -f UTF-8 -A /usr/share/locale/locale.alias zh_CN.UTF-8 && rm -rf /var/lib/apt/lists/* && apt clean && echo "root:$6$xyz$7.BiniR45/lzwCTP3EYSLGgkXmElYq57qDtFv1oizUilpBC9u02BZ1DdCBuA4va1MZ1R2VtEsIcKWFIXjiGke1" |chpasswd -e # buildkit |
| ENV LANG=zh_CN.UTF-8 |
| COPY jdk1.8.0_202 /opt/jdk1.8 # buildkit |
| ENV JAVA_HOME=/opt/jdk1.8 |
| ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/jdk1.8/bin |
| RUN /bin/sh -c find "$JAVA_HOME/lib" -name '*.so' -exec dirname '{}' ';'|sort -u > /etc/ld.so.conf.d/jdk.conf && ldconfig; # buildkit |
| ADD --chmod=755 tini /bin/tini # buildkit |
| RUN /bin/sh -c mkdir -p /apps/log /apps/file && apt -y update && apt -y upgrade && apt install -y fontconfig xfonts-utils && rm -rf /var/lib/apt/lists/* && apt clean && mkdir -p /usr/share/fonts/my_fonts # buildkit |
| COPY msyh.ttc msyhbd.ttc msyhl.ttc /usr/share/fonts/my_fonts/ # buildkit |
| RUN /bin/sh -c cd /usr/share/fonts/my_fonts && mkfontscale # buildkit |
| WORKDIR /apps |
| COPY run_app.sh /apps/run_app.sh # buildkit |
| COPY file:0a230077cf2f1edbdf69f6bae80f470d263a3a4bcd710ff3fa88d3150f0ac324 in /apps/abacus.hz.acas-1.0.1.35.jar |
| ENV server.servlet.context-path= |
| EXPOSE 9000 |
| ENTRYPOINT ["/bin/tini" "--" "/apps/run_app.sh" "abacus.hz.acas-1.0.1.35.jar"] |