Skip to content

Commit

Permalink
1.44.0 (#368)
Browse files Browse the repository at this point in the history
Co-authored-by: littledivy <littledivy@users.noreply.github.com>
  • Loading branch information
denobot and littledivy committed May 30, 2024
1 parent 8d631f2 commit 6954cb2
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .bmp.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.43.6
version: 1.44.0
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:1.43.6 repl
$ docker run -it denoland/deno:1.44.0 repl
```

To shell into the docker runtime:

```sh
$ docker run -it denoland/deno:1.43.6 sh
$ docker run -it denoland/deno:1.44.0 sh
```

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

```sh
$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:1.43.6 run --allow-net /app/main.ts
$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:1.44.0 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:1.43.6
FROM denoland/deno:1.44.0

# 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-1.43.6 /deno /usr/local/bin/deno
COPY --from=denoland/deno:bin-1.44.0 /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:1.43.6 \
denoland/deno:1.44.0 \
"$@"
}
```
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=1.43.6
ARG DENO_VERSION=1.44.0
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=1.43.6
ARG DENO_VERSION=1.44.0


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=1.43.6
ARG DENO_VERSION=1.44.0
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=1.43.6
ARG DENO_VERSION=1.44.0
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:1.43.6
FROM denoland/deno:1.44.0

# The port that your application listens to.
EXPOSE 1993
Expand Down
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=1.43.6
ARG DENO_VERSION=1.44.0
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}


Expand Down

0 comments on commit 6954cb2

Please sign in to comment.