Skip to content

Commit e3ebfc4

Browse files
authored
2.1.11 (#459)
1 parent 645fabb commit e3ebfc4

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
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.1.10
1+
version: 2.1.11
22
commit: '%.%.%'
33
files:
44
README.md:

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,11 @@ jobs:
150150
docker pull --platform linux/arm64 denoland/deno:${{ github.ref_name }}
151151
docker pull --platform linux/arm64 denoland/deno:latest
152152
153-
- name: Update Docker Hub Description
154-
if: github.repository == 'denoland/deno_docker' && github.ref_type == 'tag' && matrix.kind == 'debian' # Only on a tag and once per run (on debian run)
155-
uses: peter-evans/dockerhub-description@e98e4d1628a5f3be2be7c231e50981aee98723ae # v4.0.0
156-
with:
157-
username: ${{ secrets.DOCKERHUB_USERNAME }}
158-
password: ${{ secrets.DOCKERHUB_PASSWORD }}
159-
repository: denoland/deno
160-
short-description: ${{ github.event.repository.description }}
153+
# - name: Update Docker Hub Description
154+
# if: github.repository == 'denoland/deno_docker' && github.ref_type == 'tag' && matrix.kind == 'debian' # Only on a tag and once per run (on debian run)
155+
# uses: peter-evans/dockerhub-description@e98e4d1628a5f3be2be7c231e50981aee98723ae # v4.0.0
156+
# with:
157+
# username: ${{ secrets.DOCKERHUB_USERNAME }}
158+
# password: ${{ secrets.DOCKERHUB_PASSWORD }}
159+
# repository: denoland/deno
160+
# short-description: ${{ github.event.repository.description }}

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.1.10 repl
22+
$ docker run -it denoland/deno:2.1.11 repl
2323
```
2424

2525
To shell into the docker runtime:
2626

2727
```sh
28-
$ docker run -it denoland/deno:2.1.10 sh
28+
$ docker run -it denoland/deno:2.1.11 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.1.10 run --allow-net /app/main.ts
34+
$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:2.1.11 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.1.10
44+
FROM denoland/deno:2.1.11
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.1.10 /deno /usr/local/bin/deno
80+
COPY --from=denoland/deno:bin-2.1.11 /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.1.10 \
107+
denoland/deno:2.1.11 \
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.1.10
1+
ARG DENO_VERSION=2.1.11
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.1.10
1+
ARG DENO_VERSION=2.1.11
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.1.10
1+
ARG DENO_VERSION=2.1.11
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.1.10
1+
ARG DENO_VERSION=2.1.11
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.1.10
1+
FROM denoland/deno:2.1.11
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.1.10
1+
ARG DENO_VERSION=2.1.11
22
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}
33

44

0 commit comments

Comments
 (0)