From e0ff1e05be73cb1133d78c4581eab13f1ad996fb Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Wed, 30 Oct 2024 00:00:35 -0400 Subject: [PATCH] 2.0.4 (#430) Co-authored-by: bartlomieju --- .bmp.yml | 2 +- README.md | 12 ++++++------ alpine.dockerfile | 2 +- bin.dockerfile | 2 +- debian.dockerfile | 2 +- distroless.dockerfile | 2 +- example/Dockerfile | 2 +- ubuntu.dockerfile | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.bmp.yml b/.bmp.yml index 7708ebb..99e63cc 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 2.0.3 +version: 2.0.4 commit: '%.%.%' files: README.md: diff --git a/README.md b/README.md index 880b0e5..0af5125 100644 --- a/README.md +++ b/README.md @@ -19,19 +19,19 @@ Dockerhub: To start the `deno` repl: ```sh -$ docker run -it denoland/deno:2.0.3 repl +$ docker run -it denoland/deno:2.0.4 repl ``` To shell into the docker runtime: ```sh -$ docker run -it denoland/deno:2.0.3 sh +$ docker run -it denoland/deno:2.0.4 sh ``` To run `main.ts` from your working directory: ```sh -$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:2.0.3 run --allow-net /app/main.ts +$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:2.0.4 run --allow-net /app/main.ts ``` Here, `-p 1993:1993` maps port 1993 on the container to 1993 on the host, @@ -41,7 +41,7 @@ Here, `-p 1993:1993` maps port 1993 on the container to 1993 on the host, ## As a Dockerfile ```Dockerfile -FROM denoland/deno:2.0.3 +FROM denoland/deno:2.0.4 # 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 ```Dockerfile FROM ubuntu -COPY --from=denoland/deno:bin-2.0.3 /deno /usr/local/bin/deno +COPY --from=denoland/deno:bin-2.0.4 /deno /usr/local/bin/deno ``` ## Running on Google Cloud Run(GCR) @@ -104,7 +104,7 @@ deno () { --volume $PWD:/app \ --volume $HOME/.deno:/deno-dir \ --workdir /app \ - denoland/deno:2.0.3 \ + denoland/deno:2.0.4 \ "$@" } ``` diff --git a/alpine.dockerfile b/alpine.dockerfile index ac4980f..1eef9e8 100644 --- a/alpine.dockerfile +++ b/alpine.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=2.0.3 +ARG DENO_VERSION=2.0.4 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/bin.dockerfile b/bin.dockerfile index 906dad9..8dff042 100644 --- a/bin.dockerfile +++ b/bin.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=2.0.3 +ARG DENO_VERSION=2.0.4 FROM buildpack-deps:20.04-curl AS download diff --git a/debian.dockerfile b/debian.dockerfile index b9bfe50..8a392ce 100644 --- a/debian.dockerfile +++ b/debian.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=2.0.3 +ARG DENO_VERSION=2.0.4 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/distroless.dockerfile b/distroless.dockerfile index 41a53a2..5869fae 100644 --- a/distroless.dockerfile +++ b/distroless.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=2.0.3 +ARG DENO_VERSION=2.0.4 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/example/Dockerfile b/example/Dockerfile index 2c4862c..f376a7b 100644 --- a/example/Dockerfile +++ b/example/Dockerfile @@ -1,4 +1,4 @@ -FROM denoland/deno:2.0.3 +FROM denoland/deno:2.0.4 # The port that your application listens to. EXPOSE 1993 diff --git a/ubuntu.dockerfile b/ubuntu.dockerfile index 70b8b58..3f03e02 100644 --- a/ubuntu.dockerfile +++ b/ubuntu.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=2.0.3 +ARG DENO_VERSION=2.0.4 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}