remove typescript from final docker image

This commit is contained in:
Robin Appelman 2020-12-05 18:42:40 +01:00
commit 4a1d3ea43c
2 changed files with 4 additions and 3 deletions

View file

@ -28,6 +28,7 @@ COPY tsconfig.json ./
COPY src/ ./src/
RUN npm run build
RUN rm -r node_modules/typescript
FROM node:alpine