Initial commit

This commit is contained in:
LuRuiqian
2026-04-17 11:46:16 +08:00
commit edead1a026
279 changed files with 18957 additions and 0 deletions

7
renren-api/Dockerfile Normal file
View File

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