Last active
May 13, 2020 17:49
-
-
Save grant/d90e49ababecf739add51c28683dda43 to your computer and use it in GitHub Desktop.
Deno Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM hayd/alpine-deno:1.0.0-rc2 | |
| WORKDIR /app | |
| # These steps will be re-run upon each file change in your working directory: | |
| COPY . ./ | |
| # Added to ENTRYPOINT of base image. | |
| CMD ["run", "--allow-env", "--allow-net", "main.ts"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment