@@ -13,8 +13,8 @@ Docker files for [Deno](https://github.com/denoland/deno) published on
1313Images are available from both registries:
1414
1515``` sh
16- docker pull denoland/deno:2.8.1 # Docker Hub
17- docker pull ghcr.io/denoland/deno:2.8.1 # GHCR
16+ docker pull denoland/deno:2.8.2 # Docker Hub
17+ docker pull ghcr.io/denoland/deno:2.8.2 # GHCR
1818```
1919
2020---
@@ -24,19 +24,19 @@ docker pull ghcr.io/denoland/deno:2.8.1 # GHCR
2424To start the ` deno ` repl:
2525
2626``` sh
27- $ docker run -it denoland/deno:2.8.1 repl
27+ $ docker run -it denoland/deno:2.8.2 repl
2828```
2929
3030To shell into the docker runtime:
3131
3232``` sh
33- $ docker run -it denoland/deno:2.8.1 sh
33+ $ docker run -it denoland/deno:2.8.2 sh
3434```
3535
3636To run ` main.ts ` from your working directory:
3737
3838``` sh
39- $ docker run -it -p 1993:1993 -v $PWD :/app denoland/deno:2.8.1 run --allow-net /app/main.ts
39+ $ docker run -it -p 1993:1993 -v $PWD :/app denoland/deno:2.8.2 run --allow-net /app/main.ts
4040```
4141
4242Here, ` -p 1993:1993 ` maps port 1993 on the container to 1993 on the host,
@@ -46,7 +46,7 @@ Here, `-p 1993:1993` maps port 1993 on the container to 1993 on the host,
4646## As a Dockerfile
4747
4848``` Dockerfile
49- FROM denoland/deno:2.8.1
49+ FROM denoland/deno:2.8.2
5050
5151# The port that your application listens to.
5252EXPOSE 1993
@@ -81,7 +81,7 @@ If you prefer to install `deno` in your own base image, you can use the
8181
8282``` Dockerfile
8383FROM ubuntu
84- COPY --from=denoland/deno:bin-2.8.1 /deno /usr/local/bin/deno
84+ COPY --from=denoland/deno:bin-2.8.2 /deno /usr/local/bin/deno
8585```
8686
8787## Running on Google Cloud Run(GCR)
@@ -108,7 +108,7 @@ deno () {
108108 --volume $PWD :/app \
109109 --volume $HOME /.deno:/deno-dir \
110110 --workdir /app \
111- denoland/deno:2.8.1 \
111+ denoland/deno:2.8.2 \
112112 " $@ "
113113}
114114```
0 commit comments