@@ -19,19 +19,19 @@ Dockerhub:
1919To start the ` deno ` repl:
2020
2121``` sh
22- $ docker run -it denoland/deno:2.6.5 repl
22+ $ docker run -it denoland/deno:2.6.6 repl
2323```
2424
2525To shell into the docker runtime:
2626
2727``` sh
28- $ docker run -it denoland/deno:2.6.5 sh
28+ $ docker run -it denoland/deno:2.6.6 sh
2929```
3030
3131To run ` main.ts ` from your working directory:
3232
3333``` sh
34- $ docker run -it -p 1993:1993 -v $PWD :/app denoland/deno:2.6.5 run --allow-net /app/main.ts
34+ $ docker run -it -p 1993:1993 -v $PWD :/app denoland/deno:2.6.6 run --allow-net /app/main.ts
3535```
3636
3737Here, ` -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,
4141## As a Dockerfile
4242
4343``` Dockerfile
44- FROM denoland/deno:2.6.5
44+ FROM denoland/deno:2.6.6
4545
4646# The port that your application listens to.
4747EXPOSE 1993
@@ -77,7 +77,7 @@ If you prefer to install `deno` in your own base image, you can use the
7777
7878``` Dockerfile
7979FROM ubuntu
80- COPY --from=denoland/deno:bin-2.6.5 /deno /usr/local/bin/deno
80+ COPY --from=denoland/deno:bin-2.6.6 /deno /usr/local/bin/deno
8181```
8282
8383## Running on Google Cloud Run(GCR)
@@ -104,7 +104,7 @@ deno () {
104104 --volume $PWD :/app \
105105 --volume $HOME /.deno:/deno-dir \
106106 --workdir /app \
107- denoland/deno:2.6.5 \
107+ denoland/deno:2.6.6 \
108108 " $@ "
109109}
110110```
0 commit comments