This commit is contained in:
lingxiao865
2026-02-10 08:22:09 +08:00
commit 0f38d49b66
71 changed files with 5494 additions and 0 deletions

17
auth/Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM openjdk:25-jdk-slim
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libfreetype6 \
fontconfig \
fonts-dejavu-core \
fonts-wqy-microhei && \
rm -rf /var/lib/apt/lists/* \
WORKDIR /app
COPY target/*.jar app.jar
EXPOSE 9000
ENTRYPOINT ["java", "-jar", "app.jar"]