2024-04-22 13:50:13 +00:00
|
|
|
FROM denoland/deno:1.42.4
|
2022-09-03 00:13:28 +00:00
|
|
|
|
2024-04-26 10:04:31 +00:00
|
|
|
|
2022-09-03 00:13:28 +00:00
|
|
|
WORKDIR /app
|
2024-04-26 10:04:31 +00:00
|
|
|
|
|
|
|
RUN chown -R deno:deno /app
|
|
|
|
|
2022-09-03 00:13:28 +00:00
|
|
|
USER deno
|
|
|
|
|
|
|
|
COPY deps.ts .
|
|
|
|
RUN deno cache deps.ts
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
RUN deno cache main.ts
|
|
|
|
|
|
|
|
CMD ["run", "--allow-env", "--allow-net=:8080,discord.com", "main.ts"]
|