添加 Dockerfile 以及测试环境脚本;docker 脚本复用环境变量

This commit is contained in:
2025-04-03 17:04:31 +08:00
parent 9d8850aec1
commit 67d82c4308
4 changed files with 57 additions and 5 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM ubuntu:20.04
WORKDIR /app
COPY ./bin/platform_linux_amd64 /app/platform
RUN chmod +x /app/platform
EXPOSE $APP_PORT
CMD ["/app/proxy"]