初始化工程

This commit is contained in:
xcy
2022-07-01 13:49:44 +08:00
parent 2390dedfff
commit 2e740cbe9e
315 changed files with 40038 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
FROM openjdk:8u181-jre-alpine
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo 'Asia/Shanghai' >/etc/timezone && apk add --no-cache curl
COPY ./target/usm-render-1.0-SNAPSHOT.jar /
WORKDIR /
EXPOSE 8080
CMD ["java", "-jar","usm-render-1.0-SNAPSHOT.jar"]