Skip to content

Commit

Permalink
1.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato authored Nov 9, 2021
1 parent b659ed9 commit 11fc15b
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ Dockerhub:
To start the `deno` repl:

```sh
$ docker run -it denoland/deno:1.15.3 repl
$ docker run -it denoland/deno:1.16.0 repl
```

To shell into the docker runtime:

```sh
$ docker run -it denoland/deno:1.15.3 sh
$ docker run -it denoland/deno:1.16.0 sh
```

To run `main.ts` from your working directory:

```sh
$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:1.15.3 run --allow-net /app/main.ts
$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:1.16.0 run --allow-net /app/main.ts
```

Here, `-p 1993:1993` maps port 1993 on the container to 1993 on the host,
Expand All @@ -42,7 +42,7 @@ Here, `-p 1993:1993` maps port 1993 on the container to 1993 on the host,
## As a Dockerfile

```Dockerfile
FROM denoland/deno:1.15.3
FROM denoland/deno:1.16.0

# The port that your application listens to.
EXPOSE 1993
Expand Down Expand Up @@ -79,7 +79,7 @@ If you prefer to install `deno` in your own base image, you can use the
```Dockerfile
FROM ubuntu

ARG DENO_VERSION=1.15.3
ARG DENO_VERSION=1.16.0

COPY --from=denoland/deno:bin-${DENO_VERSION} /deno /usr/local/bin/deno
```
Expand All @@ -98,7 +98,7 @@ deno () {
--volume $PWD:/app \
--volume $HOME/.deno:/deno-dir \
--workdir /app \
denoland/deno:1.15.3 \
denoland/deno:1.16.0 \
"$@"
}
```
Expand Down
2 changes: 1 addition & 1 deletion alpine.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DENO_VERSION=1.15.3
ARG DENO_VERSION=1.16.0
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}


Expand Down
2 changes: 1 addition & 1 deletion bin.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DENO_VERSION=1.15.3
ARG DENO_VERSION=1.16.0


FROM buildpack-deps:20.04-curl AS download
Expand Down
2 changes: 1 addition & 1 deletion centos.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DENO_VERSION=1.15.3
ARG DENO_VERSION=1.16.0
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}


Expand Down
2 changes: 1 addition & 1 deletion debian.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DENO_VERSION=1.15.3
ARG DENO_VERSION=1.16.0
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}


Expand Down
2 changes: 1 addition & 1 deletion distroless.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DENO_VERSION=1.15.3
ARG DENO_VERSION=1.16.0
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}


Expand Down
2 changes: 1 addition & 1 deletion example/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM denoland/deno:1.15.3
FROM denoland/deno:1.16.0

# The port that your application listens to.
EXPOSE 1993
Expand Down
2 changes: 1 addition & 1 deletion ubuntu.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DENO_VERSION=1.15.3
ARG DENO_VERSION=1.16.0
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}


Expand Down

0 comments on commit 11fc15b

Please sign in to comment.