diff --git a/.bmp.yml b/.bmp.yml index 0c6ae6c..db88e87 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 1.40.1 +version: 1.40.2 commit: '%.%.%' files: README.md: diff --git a/README.md b/README.md index 98cd5a4..3d21c8c 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.1 repl +$ docker run -it denoland/deno:1.40.2 repl ``` To shell into the docker runtime: ```sh -$ docker run -it denoland/deno:1.40.1 sh +$ docker run -it denoland/deno:1.40.2 sh ``` To run `main.ts` from your working directory: ```sh -$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:1.40.1 run --allow-net /app/main.ts +$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:1.40.2 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.1 +FROM denoland/deno:1.40.2 # 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.1 +ARG DENO_VERSION=1.40.2 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.1 \ + denoland/deno:1.40.2 \ "$@" } ``` diff --git a/alpine.dockerfile b/alpine.dockerfile index fd4ad91..71e1ba5 100644 --- a/alpine.dockerfile +++ b/alpine.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.40.1 +ARG DENO_VERSION=1.40.2 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/bin.dockerfile b/bin.dockerfile index 99820e7..29df892 100644 --- a/bin.dockerfile +++ b/bin.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.40.1 +ARG DENO_VERSION=1.40.2 FROM buildpack-deps:20.04-curl AS download diff --git a/centos.dockerfile b/centos.dockerfile index 7c733ff..66312bb 100644 --- a/centos.dockerfile +++ b/centos.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.40.1 +ARG DENO_VERSION=1.40.2 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/debian.dockerfile b/debian.dockerfile index 945ef55..ecc9ef6 100644 --- a/debian.dockerfile +++ b/debian.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.40.1 +ARG DENO_VERSION=1.40.2 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/distroless.dockerfile b/distroless.dockerfile index 67c0e4c..b643f4d 100644 --- a/distroless.dockerfile +++ b/distroless.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.40.1 +ARG DENO_VERSION=1.40.2 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/example/Dockerfile b/example/Dockerfile index 8996345..c5cbde5 100644 --- a/example/Dockerfile +++ b/example/Dockerfile @@ -1,4 +1,4 @@ -FROM denoland/deno:1.40.1 +FROM denoland/deno:1.40.2 # The port that your application listens to. EXPOSE 1993 diff --git a/ubuntu.dockerfile b/ubuntu.dockerfile index 9f7d807..210e776 100644 --- a/ubuntu.dockerfile +++ b/ubuntu.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.40.1 +ARG DENO_VERSION=1.40.2 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}