https://github.com/Microsoft/TypeScript
Revision 8ac465239f52de1da3ada8cdc4c3f107f4d62e45 authored by Oleksandr T on 19 October 2022, 19:38:37 UTC, committed by GitHub on 19 October 2022, 19:38:37 UTC
1 parent 245a02c
Raw File
Tip revision: 8ac465239f52de1da3ada8cdc4c3f107f4d62e45 authored by Oleksandr T on 19 October 2022, 19:38:37 UTC
change type (#51231)
Tip revision: 8ac4652
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 ci
RUN npm i -g gulp-cli
RUN gulp configure-insiders && gulp LKG && gulp clean && npm pack .
back to top