add: 架构

This commit is contained in:
ls
2025-02-18 19:12:15 +08:00
commit 21c9b92c49
210 changed files with 39220 additions and 0 deletions

7
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"]