diff --git a/.bmp.yml b/.bmp.yml index ded3f79..6a143f3 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 1.38.5 +version: 1.39.0 commit: '%.%.%' files: README.md: diff --git a/README.md b/README.md index 9ed2ca6..c2c6773 100644 --- a/README.md +++ b/README.md @@ -20,19 +20,19 @@ Dockerhub: To start the `deno` repl: ```sh -$ docker run -it denoland/deno:1.38.5 repl +$ docker run -it denoland/deno:1.39.0 repl ``` To shell into the docker runtime: ```sh -$ docker run -it denoland/deno:1.38.5 sh +$ docker run -it denoland/deno:1.39.0 sh ``` To run `main.ts` from your working directory: ```sh -$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:1.38.5 run --allow-net /app/main.ts +$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:1.39.0 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.38.5 +FROM denoland/deno:1.39.0 # 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.38.5 +ARG DENO_VERSION=1.39.0 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.38.5 \ + denoland/deno:1.39.0 \ "$@" } ``` diff --git a/alpine.dockerfile b/alpine.dockerfile index 524b7ad..3aef674 100644 --- a/alpine.dockerfile +++ b/alpine.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.38.5 +ARG DENO_VERSION=1.39.0 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/bin.dockerfile b/bin.dockerfile index 904e473..a1b7c1b 100644 --- a/bin.dockerfile +++ b/bin.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.38.5 +ARG DENO_VERSION=1.39.0 FROM buildpack-deps:20.04-curl AS download diff --git a/centos.dockerfile b/centos.dockerfile index f42ae43..f39f16a 100644 --- a/centos.dockerfile +++ b/centos.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.38.5 +ARG DENO_VERSION=1.39.0 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/debian.dockerfile b/debian.dockerfile index 6705d91..9ebd3f8 100644 --- a/debian.dockerfile +++ b/debian.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.38.5 +ARG DENO_VERSION=1.39.0 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/distroless.dockerfile b/distroless.dockerfile index 9dea8e7..001510e 100644 --- a/distroless.dockerfile +++ b/distroless.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.38.5 +ARG DENO_VERSION=1.39.0 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/example/Dockerfile b/example/Dockerfile index fa98c4a..f69c6b1 100644 --- a/example/Dockerfile +++ b/example/Dockerfile @@ -1,4 +1,4 @@ -FROM denoland/deno:1.38.5 +FROM denoland/deno:1.39.0 # The port that your application listens to. EXPOSE 1993 diff --git a/ubuntu.dockerfile b/ubuntu.dockerfile index a102b3e..a70a1d8 100644 --- a/ubuntu.dockerfile +++ b/ubuntu.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.38.5 +ARG DENO_VERSION=1.39.0 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}