Skip to content

Commit 125946e

Browse files
authored
2.5.7 (#507)
1 parent 58689c6 commit 125946e

File tree

9 files changed

+16
-31
lines changed

9 files changed

+16
-31
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.5.6
1+
version: 2.5.7
22
commit: '%.%.%'
33
files:
44
README.md:

.github/workflows/ci.yml

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -126,35 +126,20 @@ jobs:
126126
- name: Push named images
127127
if: github.repository == 'denoland/deno_docker' && github.ref_type == 'tag'
128128
run: |
129-
docker buildx imagetools create localhost:5000/${{ matrix.kind }} -t denoland/deno:${{ matrix.kind }}-${{ github.ref_name }} -t denoland/deno:${{ matrix.kind }}
129+
docker buildx imagetools create localhost:5000/${{ matrix.kind }} -t denoland/deno:${{ matrix.kind }}-${{ github.ref_name }}
130130
docker pull --platform linux/amd64 denoland/deno:${{ matrix.kind }}-${{ github.ref_name }}
131-
docker pull --platform linux/amd64 denoland/deno:${{ matrix.kind }}
132131
docker pull --platform linux/arm64 denoland/deno:${{ matrix.kind }}-${{ github.ref_name }}
133-
docker pull --platform linux/arm64 denoland/deno:${{ matrix.kind }}
134132
135133
- name: Push bin image
136134
if: github.repository == 'denoland/deno_docker' && github.ref_type == 'tag' && matrix.kind == 'debian'
137135
run: |
138-
docker buildx imagetools create localhost:5000/bin -t denoland/deno:bin-${{ github.ref_name }} -t denoland/deno:bin
136+
docker buildx imagetools create localhost:5000/bin -t denoland/deno:bin-${{ github.ref_name }}
139137
docker pull --platform linux/amd64 denoland/deno:bin-${{ github.ref_name }}
140-
docker pull --platform linux/amd64 denoland/deno:bin
141138
docker pull --platform linux/arm64 denoland/deno:bin-${{ github.ref_name }}
142-
docker pull --platform linux/arm64 denoland/deno:bin
143139
144140
- name: Push default images
145141
if: github.repository == 'denoland/deno_docker' && github.ref_type == 'tag' && matrix.kind == 'debian'
146142
run: |
147-
docker buildx imagetools create localhost:5000/${{ matrix.kind }} -t denoland/deno:${{ github.ref_name }} -t denoland/deno:latest
143+
docker buildx imagetools create localhost:5000/${{ matrix.kind }} -t denoland/deno:${{ github.ref_name }}
148144
docker pull --platform linux/amd64 denoland/deno:${{ github.ref_name }}
149-
docker pull --platform linux/amd64 denoland/deno:latest
150145
docker pull --platform linux/arm64 denoland/deno:${{ github.ref_name }}
151-
docker pull --platform linux/arm64 denoland/deno:latest
152-
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.5.6 repl
22+
$ docker run -it denoland/deno:2.5.7 repl
2323
```
2424

2525
To shell into the docker runtime:
2626

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

44

0 commit comments

Comments
 (0)