Skip to main content
Module

x/rad/Dockerfile

general purpose build tool. statically typed, batteries included. command, function, and make-style tasks supported. improved npm scripts for deno.
Go to Latest
File
# usage: docker run --rm -v $PWD:/rad rad TASK# build: docker build -t rad .FROM hayd/deno:alpine-0.41.0RUN mkdir /radinstallWORKDIR /radinstallCOPY . .RUN ./rad testWORKDIR /radENTRYPOINT ["deno", "-A", "src/bin.ts"]