Skip to content

Commit f88e3e0

Browse files
authored
1.13.0 (#151)
1 parent 0d0d9a4 commit f88e3e0

7 files changed

+12
-12
lines changed

Diff for: README.md

+5-5
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 --init denoland/deno:1.12.2 repl
22+
$ docker run -it --init denoland/deno:1.13.0 repl
2323
```
2424

2525
To shell into the docker runtime:
2626

2727
```sh
28-
$ docker run -it --init --entrypoint sh denoland/deno:1.12.2
28+
$ docker run -it --init --entrypoint sh denoland/deno:1.13.0
2929
```
3030

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

3333
```sh
34-
$ docker run -it --init -p 1993:1993 -v $PWD:/app denoland/deno:1.12.2 run --allow-net /app/main.ts
34+
$ docker run -it --init -p 1993:1993 -v $PWD:/app denoland/deno:1.13.0 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:1.12.2
44+
FROM denoland/deno:1.13.0
4545

4646
# The port that your application listens to.
4747
EXPOSE 1993
@@ -84,7 +84,7 @@ deno () {
8484
--volume $PWD:/app \
8585
--volume $HOME/.deno:/deno-dir \
8686
--workdir /app \
87-
denoland/deno:1.12.2 \
87+
denoland/deno:1.13.0 \
8888
"$@"
8989
}
9090
```

Diff for: alpine.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM frolvlad/alpine-glibc
22

3-
ENV DENO_VERSION=1.12.2
3+
ENV DENO_VERSION=1.13.0
44

55
RUN apk add --virtual .download --no-cache curl \
66
&& curl -fsSL https://github.com/denoland/deno/releases/download/v${DENO_VERSION}/deno-x86_64-unknown-linux-gnu.zip \

Diff for: centos.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM centos:8
22

3-
ENV DENO_VERSION=1.12.2
3+
ENV DENO_VERSION=1.13.0
44

55
RUN yum makecache \
66
&& yum install unzip -y \

Diff for: debian.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM debian:stable-slim
22

3-
ENV DENO_VERSION=1.12.2
3+
ENV DENO_VERSION=1.13.0
44
ARG DEBIAN_FRONTEND=noninteractive
55

66
RUN apt-get -qq update \

Diff for: distroless.dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3.12.3
22

3-
ENV DENO_VERSION=1.12.2
3+
ENV DENO_VERSION=1.13.0
44

55
RUN apk add --virtual .download --no-cache curl \
66
&& curl -fsSL https://github.com/denoland/deno/releases/download/v${DENO_VERSION}/deno-x86_64-unknown-linux-gnu.zip \
@@ -15,7 +15,7 @@ RUN apk add --virtual .download --no-cache curl \
1515
FROM gcr.io/distroless/cc
1616
COPY --from=0 /bin/deno /bin/deno
1717

18-
ENV DENO_VERSION=1.12.2
18+
ENV DENO_VERSION=1.13.0
1919
ENV DENO_DIR /deno-dir/
2020
ENV DENO_INSTALL_ROOT /usr/local
2121

Diff for: example/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM denoland/deno:1.12.2
1+
FROM denoland/deno:1.13.0
22

33
# The port that your application listens to.
44
EXPOSE 1993

Diff for: ubuntu.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:20.04
22

3-
ENV DENO_VERSION=1.12.2
3+
ENV DENO_VERSION=1.13.0
44

55
RUN apt-get -qq update \
66
&& apt-get upgrade -y -o Dpkg::Options::="--force-confold" \

0 commit comments

Comments
 (0)