Revision a2bb27cb2c7c3b6d028b4b154442b2061f454aa2 authored by csigs on 24 February 2020, 16:10:23 UTC, committed by csigs on 24 February 2020, 16:10:23 UTC
1 parent c6cdc63
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