diff --git a/.bmp.yml b/.bmp.yml index db88e87..cd77b22 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 1.40.2 +version: 1.40.3 commit: '%.%.%' files: README.md: diff --git a/README.md b/README.md index 3d21c8c..1c89b37 100644 --- a/README.md +++ b/README.md @@ -20,19 +20,19 @@ Dockerhub: To start the `deno` repl: ```sh -$ docker run -it denoland/deno:1.40.2 repl +$ docker run -it denoland/deno:1.40.3 repl ``` To shell into the docker runtime: ```sh -$ docker run -it denoland/deno:1.40.2 sh +$ docker run -it denoland/deno:1.40.3 sh ``` To run `main.ts` from your working directory: ```sh -$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:1.40.2 run --allow-net /app/main.ts +$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:1.40.3 run --allow-net /app/main.ts ``` Here, `-p 1993:1993` maps port 1993 on the container to 1993 on the host, @@ -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.40.2 +FROM denoland/deno:1.40.3 # The port that your application listens to. EXPOSE 1993 @@ -77,7 +77,7 @@ If you prefer to install `deno` in your own base image, you can use the `denoland/deno:bin` to simplify the process. ```Dockerfile -ARG DENO_VERSION=1.40.2 +ARG DENO_VERSION=1.40.3 FROM denoland/deno:bin-$DENO_VERSION AS deno FROM ubuntu @@ -106,7 +106,7 @@ deno () { --volume $PWD:/app \ --volume $HOME/.deno:/deno-dir \ --workdir /app \ - denoland/deno:1.40.2 \ + denoland/deno:1.40.3 \ "$@" } ``` diff --git a/alpine.dockerfile b/alpine.dockerfile index 71e1ba5..be11b93 100644 --- a/alpine.dockerfile +++ b/alpine.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.40.2 +ARG DENO_VERSION=1.40.3 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/bin.dockerfile b/bin.dockerfile index 29df892..b40dcd2 100644 --- a/bin.dockerfile +++ b/bin.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.40.2 +ARG DENO_VERSION=1.40.3 FROM buildpack-deps:20.04-curl AS download diff --git a/centos.dockerfile b/centos.dockerfile index 66312bb..b0883dc 100644 --- a/centos.dockerfile +++ b/centos.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.40.2 +ARG DENO_VERSION=1.40.3 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/debian.dockerfile b/debian.dockerfile index ecc9ef6..b04fe0c 100644 --- a/debian.dockerfile +++ b/debian.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.40.2 +ARG DENO_VERSION=1.40.3 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/distroless.dockerfile b/distroless.dockerfile index b643f4d..6d3f5ff 100644 --- a/distroless.dockerfile +++ b/distroless.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.40.2 +ARG DENO_VERSION=1.40.3 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/example/Dockerfile b/example/Dockerfile index c5cbde5..b9d7db1 100644 --- a/example/Dockerfile +++ b/example/Dockerfile @@ -1,4 +1,4 @@ -FROM denoland/deno:1.40.2 +FROM denoland/deno:1.40.3 # The port that your application listens to. EXPOSE 1993 diff --git a/ubuntu.dockerfile b/ubuntu.dockerfile index 210e776..5da16bb 100644 --- a/ubuntu.dockerfile +++ b/ubuntu.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.40.2 +ARG DENO_VERSION=1.40.3 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}