This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2023-03-10 16:41:57 +02:00

13 lines
195 B
Docker

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" ]