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-1.4.0RUN mkdir /radinstallWORKDIR /radinstallCOPY . .RUN RAD_SKIP_INTEGRATION_TESTS=1 ./rad testWORKDIR /radENTRYPOINT ["deno", "--unstable", "-A", "src/bin.ts"]