Skip to main content
Module

x/denomander/Dockerfile

Deno command-line interfaces made easy
Latest
File
FROM ubuntu
RUN apt-get updateRUN apt-get install -y curl unzip
RUN curl -fsSL https://deno.land/x/install/install.sh | shRUN ln -s /root/.deno/bin/deno /usr/local/bin
WORKDIR /app
ENTRYPOINT ["deno"]