From 2b6fd8f45bb70b7242c7c975664626d389ced553 Mon Sep 17 00:00:00 2001 From: littledivy Date: Wed, 27 Sep 2023 09:21:47 +0000 Subject: [PATCH] 1.37.1 --- .bmp.yml | 2 +- README.md | 12 ++++++------ alpine.dockerfile | 2 +- bin.dockerfile | 2 +- centos.dockerfile | 2 +- debian.dockerfile | 2 +- distroless.dockerfile | 2 +- example/Dockerfile | 2 +- ubuntu.dockerfile | 2 +- 9 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.bmp.yml b/.bmp.yml index 52d1e3c..acbb805 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 1.37.0 +version: 1.37.1 commit: '%.%.%' files: README.md: diff --git a/README.md b/README.md index 44fb2a9..2990ad9 100644 --- a/README.md +++ b/README.md @@ -20,19 +20,19 @@ Dockerhub: To start the `deno` repl: ```sh -$ docker run -it denoland/deno:1.37.0 repl +$ docker run -it denoland/deno:1.37.1 repl ``` To shell into the docker runtime: ```sh -$ docker run -it denoland/deno:1.37.0 sh +$ docker run -it denoland/deno:1.37.1 sh ``` To run `main.ts` from your working directory: ```sh -$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:1.37.0 run --allow-net /app/main.ts +$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:1.37.1 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.37.0 +FROM denoland/deno:1.37.1 # 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.37.0 +ARG DENO_VERSION=1.37.1 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.37.0 \ + denoland/deno:1.37.1 \ "$@" } ``` diff --git a/alpine.dockerfile b/alpine.dockerfile index e1e0b7b..ddb1bbe 100644 --- a/alpine.dockerfile +++ b/alpine.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.37.0 +ARG DENO_VERSION=1.37.1 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/bin.dockerfile b/bin.dockerfile index e033648..27c718f 100644 --- a/bin.dockerfile +++ b/bin.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.37.0 +ARG DENO_VERSION=1.37.1 FROM buildpack-deps:20.04-curl AS download diff --git a/centos.dockerfile b/centos.dockerfile index f5ab252..d305657 100644 --- a/centos.dockerfile +++ b/centos.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.37.0 +ARG DENO_VERSION=1.37.1 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/debian.dockerfile b/debian.dockerfile index a6c0ccd..3561d99 100644 --- a/debian.dockerfile +++ b/debian.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.37.0 +ARG DENO_VERSION=1.37.1 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/distroless.dockerfile b/distroless.dockerfile index b0e4f52..e791f8b 100644 --- a/distroless.dockerfile +++ b/distroless.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.37.0 +ARG DENO_VERSION=1.37.1 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/example/Dockerfile b/example/Dockerfile index 1fff344..ae8028a 100644 --- a/example/Dockerfile +++ b/example/Dockerfile @@ -1,4 +1,4 @@ -FROM denoland/deno:1.37.0 +FROM denoland/deno:1.37.1 # The port that your application listens to. EXPOSE 1993 diff --git a/ubuntu.dockerfile b/ubuntu.dockerfile index 27f8024..9e12097 100644 --- a/ubuntu.dockerfile +++ b/ubuntu.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=1.37.0 +ARG DENO_VERSION=1.37.1 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}