Revision c124d0e2604bac1a428c24b98a1dd6508d860812 authored by TypeScript Bot on 06 December 2022, 06:06:23 UTC, committed by TypeScript Bot on 06 December 2022, 06:06:23 UTC
1 parent 0eca6b0
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 ci
RUN npx hereby configure-insiders && npx hereby LKG && npx hereby clean && npm pack .
back to top