mirror of
https://github.com/nolen777/eagle0.git
synced 2026-07-28 21:55:42 +00:00
* deploy dockerfile in a separate step * don't double-deploy * store the dockerfile * fix paths * but save the one in ci * relative to wd * maybe without ci * separate attach * actually copy to deploy * don't need this step maybe * Revert "don't need this step maybe" This reverts commit ca6e742a14cda5e48a7f4df499664e124acbe675. Former-commit-id: 62d9cfdf5090383731cefaf1f2dafb30eb486f1b
5 lines
136 B
Docker
5 lines
136 B
Docker
FROM openjdk:17
|
|
|
|
COPY ./deploy/eagle_server_deploy.jar ./eagle_server_deploy.jar
|
|
|
|
ENTRYPOINT ["java", "-jar", "eagle_server_deploy.jar"] |