Files
TypeScript/Dockerfile
Daniel Rosenwasser 022bdeae98 Backport package-lock infra changes to 3.9 (#44608)
From #40146
From #40703
Fixes #40692

Also

Co-authored-by: Andrew Casey <andrew.casey@microsoft.com>
2021-06-15 17:02:57 -07:00

7 lines
252 B
Docker

# 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 .