docker-lemp-deno/docker/deno/Dockerfile

11 lines
383 B
Docker
Raw Normal View History

2022-03-27 16:43:46 +00:00
FROM debian:stable-slim
RUN apt update -y \
&& apt clean \
&& apt install bash curl unzip -y
RUN curl -fsSL https://deno.land/x/install/install.sh | DENO_INSTALL=/usr/local sh -s v1.17.2
RUN export DENO_INSTALL="/root/.local"
RUN export PATH="$DENO_INSTALL/bin:$PATH"
COPY . denon
RUN deno install -qAf --unstable https://raw.githubusercontent.com/nnmrts/denon/patch-4/denon.ts