First commit
This commit is contained in:
13
authserver/Dockerfile
Normal file
13
authserver/Dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user