These are sources files used to build Docker image with Deno inside. Make a code, make a run, make a decision!
You can build your own Docker image from these sources:
- get the sources from the Git repository
$ git clone https://github.com/baleyko/docker-deno.git
$ cd docker-deno
- build a Docker image
$ docker build -t baleyko/deno:latest .
-- or --
- pull the image from Docker Hub
$ docker pull baleyko/deno:latest
Run some code
$ echo 'console.log("Hello World!")' | docker run -i --rm baleyko/deno:latest
The Unlicense - see the LICENSE for more details.