Skip to content

Commit

Permalink
1.41.1 (#351)
Browse files Browse the repository at this point in the history
Co-authored-by: dsherret <dsherret@users.noreply.github.com>
  • Loading branch information
denobot and dsherret committed Mar 1, 2024
1 parent 23549b4 commit b2eb510
Show file tree
Hide file tree
Showing 9 changed files with 14 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: 1.41.0
version: 1.41.1
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 @@ -20,19 +20,19 @@ Dockerhub:
To start the `deno` repl:

```sh
$ docker run -it denoland/deno:1.41.0 repl
$ docker run -it denoland/deno:1.41.1 repl
```

To shell into the docker runtime:

```sh
$ docker run -it denoland/deno:1.41.0 sh
$ docker run -it denoland/deno:1.41.1 sh
```

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

```sh
$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:1.41.0 run --allow-net /app/main.ts
$ docker run -it -p 1993:1993 -v $PWD:/app denoland/deno:1.41.1 run --allow-net /app/main.ts
```

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

```Dockerfile
FROM denoland/deno:1.41.0
FROM denoland/deno:1.41.1

# 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
`denoland/deno:bin` to simplify the process.

```Dockerfile
ARG DENO_VERSION=1.41.0
ARG DENO_VERSION=1.41.1

FROM denoland/deno:bin-$DENO_VERSION AS deno
FROM ubuntu
Expand Down Expand Up @@ -106,7 +106,7 @@ deno () {
--volume $PWD:/app \
--volume $HOME/.deno:/deno-dir \
--workdir /app \
denoland/deno:1.41.0 \
denoland/deno:1.41.1 \
"$@"
}
```
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.41.0
ARG DENO_VERSION=1.41.1
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.41.0
ARG DENO_VERSION=1.41.1


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


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.41.0
ARG DENO_VERSION=1.41.1
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.41.0
ARG DENO_VERSION=1.41.1
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.41.0
FROM denoland/deno:1.41.1

# 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.41.0
ARG DENO_VERSION=1.41.1
ARG BIN_IMAGE=denoland/deno:bin-${DENO_VERSION}


Expand Down

0 comments on commit b2eb510

Please sign in to comment.