初始化

This commit is contained in:
2020-06-28 09:01:37 +08:00
commit 88f72990f5
522 changed files with 49365 additions and 0 deletions

7
module-core/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM java:8
EXPOSE 8080
VOLUME /tmp
ADD renren-fast.jar /app.jar
RUN bash -c 'touch /app.jar'
ENTRYPOINT ["java","-jar","/app.jar"]