first commit

This commit is contained in:
zc
2026-02-06 12:21:45 +08:00
parent 5a1ccb317d
commit 994b3cb834
42 changed files with 2860 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"]