Skip to content

Commit fee2b8c

Browse files
denobotbartlomieju
andauthored
2.6.6 (#506)
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
1 parent dab482f commit fee2b8c

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.bmp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.6.5
1+
version: 2.6.6
22
commit: '%.%.%'
33
files:
44
README.md:

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ Dockerhub:
1919
To 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

2525
To 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

3131
To 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

3737
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,
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.
4747
EXPOSE 1993
@@ -77,7 +77,7 @@ If you prefer to install `deno` in your own base image, you can use the
7777

7878
```Dockerfile
7979
FROM 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
```

alpine.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG DENO_VERSION=2.6.5
1+
ARG DENO_VERSION=2.6.6
22
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}
33

44

bin.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG DENO_VERSION=2.6.5
1+
ARG DENO_VERSION=2.6.6
22

33

44
FROM buildpack-deps:20.04-curl AS download

debian.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG DENO_VERSION=2.6.5
1+
ARG DENO_VERSION=2.6.6
22
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}
33

44

distroless.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG DENO_VERSION=2.6.5
1+
ARG DENO_VERSION=2.6.6
22
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}
33

44

example/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM denoland/deno:2.6.5
1+
FROM denoland/deno:2.6.6
22

33
# The port that your application listens to.
44
EXPOSE 1993

ubuntu.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG DENO_VERSION=2.6.5
1+
ARG DENO_VERSION=2.6.6
22
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}
33

44

0 commit comments

Comments
 (0)