1# We use this dockerfile to build a packed tarfile which we import in our `docker` tests
2FROM node:current
3COPY . /typescript
4WORKDIR /typescript
5RUN npm ci
6RUN npx hereby configure-insiders && npx hereby LKG && npx hereby clean && npm pack .
7