Revision c22cdb446ab0d452dec2e4a382483f5d5a86de6e authored by Ryan Cavanaugh on 25 February 2020, 19:32:32 UTC, committed by GitHub on 25 February 2020, 19:32:32 UTC
1 parent e54b796
Raw File
Dockerfile
# We use this dockerfile to build a packed tarfile which we import in our `docker` tests
FROM node:current
COPY . /typescript
WORKDIR /typescript
RUN npm install
RUN npm i -g gulp-cli
RUN gulp configure-insiders && gulp LKG && gulp clean && npm pack .
back to top