Skip to content

Instantly share code, notes, and snippets.

@marcosc90
Created May 14, 2020 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcosc90/e00fe64579f0eb39325968353a83dba2 to your computer and use it in GitHub Desktop.
Save marcosc90/e00fe64579f0eb39325968353a83dba2 to your computer and use it in GitHub Desktop.
Deno Alpine Dockerfile
FROM frolvlad/alpine-glibc:alpine-3.11_glibc-2.31
ENV DENO_VERSION=1.0.0
WORKDIR /
RUN apk update && \
apk upgrade
RUN apk add curl
RUN curl -fsSL https://deno.land/x/install/install.sh | sh -s v${DENO_VERSION}
ENV DENO_INSTALL="/root/.deno"
ENV PATH="${DENO_INSTALL}/bin:${PATH}"
RUN deno --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment