dataease-dm/Dockerfile

24 lines
671 B
Docker
Raw Normal View History

2023-07-13 10:55:50 +08:00
FROM registry.cn-qingdao.aliyuncs.com/dataease/fabric8-java-alpine-openjdk8-jre:edge-chromium-11
2021-12-16 18:49:22 +08:00
2021-12-09 17:58:41 +08:00
ARG IMAGE_TAG
2021-11-24 11:01:55 +08:00
2023-08-28 17:03:25 +08:00
RUN mkdir -p /opt/apps /opt/dataease/data/feature/full /opt/dataease/drivers /opt/dataease/plugins/default
2021-08-26 10:49:41 +08:00
2023-08-28 17:03:25 +08:00
ADD core/mapFiles/* /opt/dataease/data/feature/full/
2021-08-26 10:49:41 +08:00
2023-08-28 17:03:25 +08:00
ADD core/drivers/* /opt/dataease/drivers/
2023-08-28 17:03:25 +08:00
ADD plugins/default/* /opt/dataease/plugins/default/
ADD core/backend/target/backend-$IMAGE_TAG.jar /opt/apps
2021-03-11 16:00:10 +08:00
ENV JAVA_APP_JAR=/opt/apps/backend-$IMAGE_TAG.jar
2021-03-11 16:00:10 +08:00
ENV AB_OFF=true
ENV JAVA_OPTIONS=-Dfile.encoding=utf-8
HEALTHCHECK --interval=15s --timeout=5s --retries=20 --start-period=30s CMD curl -f 127.0.0.1:8081
2021-12-09 21:25:13 +08:00
CMD ["/deployments/run-java.sh"]