diff --git a/.bmp.yml b/.bmp.yml index a1af975..e2fe0d6 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 2.1.9 +version: 2.1.10 commit: '%.%.%' files: README.md: diff --git a/README.md b/README.md index 09f2d1e..b8cff2d 100644 --- a/README.md +++ b/README.md @@ -19,19 +19,19 @@ Dockerhub: To start the `deno` repl: ```sh -$ docker run -it denoland/deno:2.1.9 repl +$ docker run -it denoland/deno:2.1.10 repl ``` To shell into the docker runtime: ```sh -$ docker run -it denoland/deno:2.1.9 sh +$ docker run -it denoland/deno:2.1.10 sh ``` To run `main.ts` from your working directory: ```sh -$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:2.1.9 run --allow-net /app/main.ts +$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:2.1.10 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.1.9 +FROM denoland/deno:2.1.10 # 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.1.9 /deno /usr/local/bin/deno +COPY --from=denoland/deno:bin-2.1.10 /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.1.9 \ + denoland/deno:2.1.10 \ "$@" } ``` diff --git a/alpine.dockerfile b/alpine.dockerfile index 848802d..ee46a8a 100644 --- a/alpine.dockerfile +++ b/alpine.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=2.1.9 +ARG DENO_VERSION=2.1.10 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/bin.dockerfile b/bin.dockerfile index 8b4a75e..c6339b2 100644 --- a/bin.dockerfile +++ b/bin.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=2.1.9 +ARG DENO_VERSION=2.1.10 FROM buildpack-deps:20.04-curl AS download diff --git a/debian.dockerfile b/debian.dockerfile index 4bbf54e..e5eddc9 100644 --- a/debian.dockerfile +++ b/debian.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=2.1.9 +ARG DENO_VERSION=2.1.10 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/distroless.dockerfile b/distroless.dockerfile index 131eee2..0888d85 100644 --- a/distroless.dockerfile +++ b/distroless.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=2.1.9 +ARG DENO_VERSION=2.1.10 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION} diff --git a/example/Dockerfile b/example/Dockerfile index 3202786..64ccea6 100644 --- a/example/Dockerfile +++ b/example/Dockerfile @@ -1,4 +1,4 @@ -FROM denoland/deno:2.1.9 +FROM denoland/deno:2.1.10 # The port that your application listens to. EXPOSE 1993 diff --git a/ubuntu.dockerfile b/ubuntu.dockerfile index 2c6fe8a..8fc0d5e 100644 --- a/ubuntu.dockerfile +++ b/ubuntu.dockerfile @@ -1,4 +1,4 @@ -ARG DENO_VERSION=2.1.9 +ARG DENO_VERSION=2.1.10 ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}