File tree 4 files changed +14275
-8
lines changed
vscode-pull-request-github
4 files changed +14275
-8
lines changed Original file line number Diff line number Diff line change 7
7
# SPDX-License-Identifier: EPL-2.0
8
8
#
9
9
10
- FROM registry.access.redhat.com/ubi8/nodejs-10
10
+ FROM registry.access.redhat.com/ubi8/nodejs-14:1-50
11
11
12
12
ARG extension_repository
13
13
ARG extension_revision
14
14
ARG extension_name
15
15
16
+ COPY ./vscode.d.ts /out/
17
+ COPY ./vscode.proposed.d.ts /out/
18
+
16
19
USER root
17
20
WORKDIR /
18
21
19
- RUN dnf -y install git python36 python3-six python3-pip platform-python-pip \
20
- curl bzip2 gdb make cmake gcc gcc-c++ libsecret
21
- RUN /usr/bin/python3 -m pip install --upgrade pip
22
+ RUN npm install -g npm@latest
22
23
RUN mkdir ./${extension_name}-src && cd ./${extension_name}-src && \
23
24
git clone ${extension_repository} ${extension_name} && \
24
25
cd ./${extension_name} && git checkout ${extension_revision} && \
25
26
rm -rf ./.git && tar -czvf /${extension_name}-${extension_revision}-sources.tar.gz ./ && \
26
- npm install -g vsce yarn @1.16.0 && yarn install && \
27
- curl https://raw.githubusercontent.com/microsoft/ vscode/1.48.0/src/vs/vscode. d.ts > $(pwd)/src/typings/vscode.d.ts && \
28
- curl https://raw.githubusercontent.com/microsoft/ vscode/1.48.0/src/vs/vscode. proposed.d.ts > $(pwd)/src/typings/vscode.proposed.d.ts && \
27
+ npm install -g vsce@1.
85.1 [email protected] yarn &&
npm install
--unsafe-perm=true --allow-root && \
28
+ cp /out/ vscode. d.ts $(pwd)/src/typings/vscode.d.ts && \
29
+ cp /out/ vscode. proposed.d.ts $(pwd)/src/typings/vscode.proposed.d.ts && \
29
30
vsce package --out /${extension_name}-${extension_revision}.vsix
Original file line number Diff line number Diff line change 1
1
{
2
2
"repository" : " https://github.com/microsoft/vscode-pull-request-github" ,
3
- "revision" : " 0.20.0 "
3
+ "revision" : " 0.21.1 "
4
4
}
You can’t perform that action at this time.
0 commit comments