We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d94b8e4 commit f8382d7Copy full SHA for f8382d7
tests/cases/docker/pyright/Dockerfile
@@ -0,0 +1,11 @@
1
+FROM node:current
2
+RUN git clone https://github.com/microsoft/pyright.git /pyright
3
+WORKDIR /pyright
4
+RUN git pull
5
+RUN npm i
6
+COPY --from=typescript/typescript /typescript/typescript-*.tgz /typescript.tgz
7
+RUN npm install /typescript.tgz --exact --ignore-scripts --save-dev
8
+RUN npx lerna exec --stream --concurrency 1 -- npm install /typescript.tgz --exact --ignore-scripts --save-dev
9
+WORKDIR /pyright/packages/pyright
10
+ENTRYPOINT [ "npx" ]
11
+CMD [ "webpack", "--mode", "production" ]
0 commit comments