Created
May 14, 2020 09:59
-
-
Save marcosc90/e00fe64579f0eb39325968353a83dba2 to your computer and use it in GitHub Desktop.
Deno Alpine Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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