init commit

This commit is contained in:
2025-02-19 14:23:58 +08:00
commit 10a4f010ce
34 changed files with 1340 additions and 0 deletions

10
Dockerfile Normal file
View File

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