mirror of
https://github.com/SrIzan10/starters.git
synced 2026-05-01 11:05:16 +00:00
11 lines
189 B
Docker
11 lines
189 B
Docker
FROM denoland/deno:1.16.2
|
|
|
|
WORKDIR /app
|
|
|
|
USER deno
|
|
|
|
# These steps will be re-run upon each file change in your working directory:
|
|
ADD . .
|
|
|
|
CMD deno run --allow-net --allow-env src/index.ts
|