Spaces:
Running
Running
File size: 304 Bytes
b268bfa 85001dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
FROM denoland/deno:latest
EXPOSE 8000
WORKDIR /app
# Prefer not to run as root.
USER deno
RUN deno install --entrypoint main.ts
COPY . .
# Compile the main app so that it doesn't need to be compiled each startup/entry.
RUN deno cache main.ts
CMD ["deno", "run", "-A", "--unstable-cron", "main.ts"] |