You've already forked DataMate
* feature: LabelStudio jumps without login * refactor: modify data collection to python implementation * refactor: modify data collection to python implementation * refactor: modify data collection to python implementation * refactor: modify data collection to python implementation * refactor: modify data collection to python implementation * refactor: modify data collection to python implementation * fix: remove terrabase dependency * feature: add the collection task executions page and the collection template page * fix: fix the collection task creation * fix: fix the collection task creation
29 lines
743 B
Docker
29 lines
743 B
Docker
FROM maven:3-eclipse-temurin-21 AS builder
|
|
|
|
COPY backend/ /opt/gateway
|
|
|
|
RUN cd /opt/gateway/api-gateway && \
|
|
mvn -U clean package -Dmaven.test.skip=true
|
|
|
|
|
|
FROM eclipse-temurin:21-jdk
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y vim wget curl dos2unix && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY --from=builder /opt/gateway/api-gateway/target/gateway.jar /opt/gateway/gateway.jar
|
|
|
|
COPY scripts/images/gateway/start.sh /opt/gateway/start.sh
|
|
|
|
RUN dos2unix /opt/gateway/start.sh \
|
|
&& chmod +x /opt/gateway/start.sh \
|
|
&& ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
|
|
|
EXPOSE 8080
|
|
|
|
ENTRYPOINT ["/opt/gateway/start.sh"]
|
|
|
|
CMD ["java", "-Duser.timezone=Asia/Shanghai", "-jar", "/opt/gateway/gateway.jar"]
|