First commit

This commit is contained in:
AndrewTrieu
2023-04-21 13:17:50 +03:00
commit c9f31e5c8a
26 changed files with 465 additions and 0 deletions

13
authserver/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM denoland/deno:alpine-1.29.2
EXPOSE 7777
WORKDIR /app
COPY deps.js .
RUN deno cache deps.js
COPY . .
CMD [ "run", "--unstable", "--watch", "--allow-all", "--no-check", "app-launch.js" ]