Skip to content

Commit add0601

Browse files
denobotbartlomieju
andauthored
2.7.13 (#535)
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
1 parent 1209bee commit add0601

8 files changed

Lines changed: 15 additions & 15 deletions

File tree

.bmp.yml

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

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Docker files for [Deno](https://github.com/denoland/deno) published on
1313
Images are available from both registries:
1414

1515
```sh
16-
docker pull denoland/deno:2.7.12 # Docker Hub
17-
docker pull ghcr.io/denoland/deno:2.7.12 # GHCR
16+
docker pull denoland/deno:2.7.13 # Docker Hub
17+
docker pull ghcr.io/denoland/deno:2.7.13 # GHCR
1818
```
1919

2020
---
@@ -24,19 +24,19 @@ docker pull ghcr.io/denoland/deno:2.7.12 # GHCR
2424
To start the `deno` repl:
2525

2626
```sh
27-
$ docker run -it denoland/deno:2.7.12 repl
27+
$ docker run -it denoland/deno:2.7.13 repl
2828
```
2929

3030
To shell into the docker runtime:
3131

3232
```sh
33-
$ docker run -it denoland/deno:2.7.12 sh
33+
$ docker run -it denoland/deno:2.7.13 sh
3434
```
3535

3636
To run `main.ts` from your working directory:
3737

3838
```sh
39-
$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:2.7.12 run --allow-net /app/main.ts
39+
$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:2.7.13 run --allow-net /app/main.ts
4040
```
4141

4242
Here, `-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.7.12
49+
FROM denoland/deno:2.7.13
5050

5151
# The port that your application listens to.
5252
EXPOSE 1993
@@ -81,7 +81,7 @@ If you prefer to install `deno` in your own base image, you can use the
8181

8282
```Dockerfile
8383
FROM ubuntu
84-
COPY --from=denoland/deno:bin-2.7.12 /deno /usr/local/bin/deno
84+
COPY --from=denoland/deno:bin-2.7.13 /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.7.12 \
111+
denoland/deno:2.7.13 \
112112
"$@"
113113
}
114114
```

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.7.12
1+
ARG DENO_VERSION=2.7.13
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.7.12
1+
ARG DENO_VERSION=2.7.13
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.7.12
1+
ARG DENO_VERSION=2.7.13
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.7.12
1+
ARG DENO_VERSION=2.7.13
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.7.12
1+
FROM denoland/deno:2.7.13
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.7.12
1+
ARG DENO_VERSION=2.7.13
22
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}
33

44

0 commit comments

Comments
 (0)