11 lines
383 B
Docker
11 lines
383 B
Docker
|
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
|