初始化

This commit is contained in:
2022-06-21 20:47:46 +08:00
parent b666a24a98
commit 59da3376c1
1246 changed files with 129600 additions and 0 deletions

7
pqs-auth/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM openjdk:8-jdk-alpine
RUN set -xe \&& apk --no-cache add ttf-dejavu fontconfig
ADD target/auth.jar auth.jar
ENTRYPOINT ["java","-jar","/auth.jar"]
EXPOSE 10214
RUN /bin/cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \&& echo 'Asia/Shanghai' >/etc/timezone