0
0
mirror of https://github.com/vx3r/wg-gen-web.git synced 2025-09-10 12:14:28 +00:00

Initial commit

This commit is contained in:
vx3r
2020-01-30 15:45:49 +09:00
commit 024d2b4ebb
32 changed files with 11342 additions and 0 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM debian:stable-slim
WORKDIR /app
ADD wg-gen-web-linux-amd64 .
ADD .env .
ADD ui/dist ui/dist
RUN chmod +x ./wg-gen-web-linux-amd64
EXPOSE 8080
CMD ["/app/wg-gen-web-linux-amd64"]