Skip to content

Commit

Permalink
2.0.0-rc.7 (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju authored Sep 28, 2024
1 parent e53bc91 commit c362968
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .bmp.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.0.0-rc.6
version: 2.0.0-rc.7
commit: '%.%.%'
files:
README.md:
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ Dockerhub:
To start the `deno` repl:

```sh
$ docker run -it denoland/deno:2.0.0-rc.6 repl
$ docker run -it denoland/deno:2.0.0-rc.7 repl
```

To shell into the docker runtime:

```sh
$ docker run -it denoland/deno:2.0.0-rc.6 sh
$ docker run -it denoland/deno:2.0.0-rc.7 sh
```

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

```sh
$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:2.0.0-rc.6 run --allow-net /app/main.ts
$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:2.0.0-rc.7 run --allow-net /app/main.ts
```

Here, `-p 1993:1993` maps port 1993 on the container to 1993 on the host,
Expand All @@ -41,7 +41,7 @@ Here, `-p 1993:1993` maps port 1993 on the container to 1993 on the host,
## As a Dockerfile

```Dockerfile
FROM denoland/deno:2.0.0-rc.6
FROM denoland/deno:2.0.0-rc.7

# The port that your application listens to.
EXPOSE 1993
Expand Down Expand Up @@ -77,7 +77,7 @@ If you prefer to install `deno` in your own base image, you can use the

```Dockerfile
FROM ubuntu
COPY --from=denoland/deno:bin-2.0.0-rc.6 /deno /usr/local/bin/deno
COPY --from=denoland/deno:bin-2.0.0-rc.7 /deno /usr/local/bin/deno
```

## Running on Google Cloud Run(GCR)
Expand All @@ -104,7 +104,7 @@ deno () {
--volume $PWD:/app \
--volume $HOME/.deno:/deno-dir \
--workdir /app \
denoland/deno:2.0.0-rc.6 \
denoland/deno:2.0.0-rc.7 \
"$@"
}
```
Expand Down
2 changes: 1 addition & 1 deletion alpine.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DENO_VERSION=2.0.0-rc.6
ARG DENO_VERSION=2.0.0-rc.7
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}


Expand Down
2 changes: 1 addition & 1 deletion bin.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DENO_VERSION=2.0.0-rc.6
ARG DENO_VERSION=2.0.0-rc.7


FROM buildpack-deps:20.04-curl AS download
Expand Down
2 changes: 1 addition & 1 deletion debian.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DENO_VERSION=2.0.0-rc.6
ARG DENO_VERSION=2.0.0-rc.7
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}


Expand Down
2 changes: 1 addition & 1 deletion distroless.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DENO_VERSION=2.0.0-rc.6
ARG DENO_VERSION=2.0.0-rc.7
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}


Expand Down
2 changes: 1 addition & 1 deletion example/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM denoland/deno:2.0.0-rc.6
FROM denoland/deno:2.0.0-rc.7

# The port that your application listens to.
EXPOSE 1993
Expand Down
3 changes: 2 additions & 1 deletion tools/release/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

export * from "https://raw.githubusercontent.com/denoland/automation/0.20.0/mod.ts";
export * from "https://raw.githubusercontent.com/denoland/automation/0.20.0/github_actions.ts";
export { parse as parseYaml } from "https://deno.land/[email protected]/encoding/yaml.ts";
export { parse as parseYaml } from "jsr:@std/yaml@1";
export * as path from "jsr:@std/path@1";
2 changes: 1 addition & 1 deletion ubuntu.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DENO_VERSION=2.0.0-rc.6
ARG DENO_VERSION=2.0.0-rc.7
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}


Expand Down

0 comments on commit c362968

Please sign in to comment.