Deno is a secure runtime for JavaScript and TypeScript
466
Deno is a simple, modern and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust.
sample:
FROM dage459/deno:<version>
# create a workdir
WORKDIR /deno
# copy your code
COPY ./src/server.ts .
# use the follow line to pre-cache all dependency
RUN deno cache server.ts
# open a port
EXPOSE 8000
# run your code
CMD ["deno", "run", "--allow-net", "server.ts"]
Depend on:
Content type
Image
Digest
Size
41 MB
Last updated
about 5 years ago
docker pull dage459/deno