diff --git a/README.md b/README.md index 6c76e64..6e92a94 100644 --- a/README.md +++ b/README.md @@ -19,19 +19,19 @@ Dockerhub: To start the `deno` repl: ```sh -$ docker run -it --init denoland/deno:1.11.5 repl +$ docker run -it --init denoland/deno:1.12.0 repl ``` To shell into the docker runtime: ```sh -$ docker run -it --init --entrypoint sh denoland/deno:1.11.5 +$ docker run -it --init --entrypoint sh denoland/deno:1.12.0 ``` To run `main.ts` from your working directory: ```sh -$ docker run -it --init -p 1993:1993 -v $PWD:/app denoland/deno:1.11.5 run --allow-net /app/main.ts +$ docker run -it --init -p 1993:1993 -v $PWD:/app denoland/deno:1.12.0 run --allow-net /app/main.ts ``` 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, ## As a Dockerfile ```Dockerfile -FROM denoland/deno:1.11.5 +FROM denoland/deno:1.12.0 # The port that your application listens to. EXPOSE 1993 @@ -84,7 +84,7 @@ deno () { --volume $PWD:/app \ --volume $HOME/.deno:/deno-dir \ --workdir /app \ - denoland/deno:1.11.5 \ + denoland/deno:1.12.0 \ "$@" } ``` diff --git a/alpine.dockerfile b/alpine.dockerfile index e2d3853..c145ba9 100644 --- a/alpine.dockerfile +++ b/alpine.dockerfile @@ -1,6 +1,6 @@ FROM frolvlad/alpine-glibc -ENV DENO_VERSION=1.11.5 +ENV DENO_VERSION=1.12.0 RUN apk add --virtual .download --no-cache curl \ && curl -fsSL https://github.com/denoland/deno/releases/download/v${DENO_VERSION}/deno-x86_64-unknown-linux-gnu.zip \ diff --git a/centos.dockerfile b/centos.dockerfile index e64db65..833773f 100644 --- a/centos.dockerfile +++ b/centos.dockerfile @@ -1,6 +1,6 @@ FROM centos:8 -ENV DENO_VERSION=1.11.5 +ENV DENO_VERSION=1.12.0 RUN yum makecache \ && yum install unzip -y \ diff --git a/debian.dockerfile b/debian.dockerfile index ef8b0f9..7277062 100644 --- a/debian.dockerfile +++ b/debian.dockerfile @@ -1,6 +1,6 @@ FROM debian:stable-slim -ENV DENO_VERSION=1.11.5 +ENV DENO_VERSION=1.12.0 ARG DEBIAN_FRONTEND=noninteractive RUN apt-get -qq update \ diff --git a/distroless.dockerfile b/distroless.dockerfile index cc0b422..db2365c 100644 --- a/distroless.dockerfile +++ b/distroless.dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.12.3 -ENV DENO_VERSION=1.11.5 +ENV DENO_VERSION=1.12.0 RUN apk add --virtual .download --no-cache curl \ && 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 \ FROM gcr.io/distroless/cc COPY --from=0 /bin/deno /bin/deno -ENV DENO_VERSION=1.11.5 +ENV DENO_VERSION=1.12.0 ENV DENO_DIR /deno-dir/ ENV DENO_INSTALL_ROOT /usr/local diff --git a/example/Dockerfile b/example/Dockerfile index ff44b1a..8834b66 100644 --- a/example/Dockerfile +++ b/example/Dockerfile @@ -1,4 +1,4 @@ -FROM denoland/deno:1.11.5 +FROM denoland/deno:1.12.0 # The port that your application listens to. EXPOSE 1993 diff --git a/ubuntu.dockerfile b/ubuntu.dockerfile index 4f63132..6abd77f 100644 --- a/ubuntu.dockerfile +++ b/ubuntu.dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:20.04 -ENV DENO_VERSION=1.11.5 +ENV DENO_VERSION=1.12.0 RUN apt-get -qq update \ && apt-get upgrade -y -o Dpkg::Options::="--force-confold" \