mic-bot/Dockerfile

16 lines
301 B
Docker
Raw Normal View History

2024-10-24 08:35:13 +00:00
FROM denoland/deno:1.46.3
2024-10-23 16:09:10 +00:00
WORKDIR /app
COPY . .
2024-10-24 08:35:13 +00:00
RUN deno cache ./main.ts
# RUN deno cache ./main.ts --allow-import
2024-10-23 16:09:10 +00:00
RUN mkdir bin
# Not working
# RUN deno compile ./main.ts -o ./bin/mic --allow-all --allow-import
# ENTRYPOINT [ "./bin/mic" ]
2024-10-24 08:35:13 +00:00
ENTRYPOINT [ "deno", "run", "--allow-all", "main.ts" ]