Skip to content

Commit 4c5e8c4

Browse files
authored
chore: Update the GitHub PR plugin version to 0.21.1 (#33)
* chore: Update the GitHub PR plugin version to 0.21.1 Signed-off-by: Igor Vinokur <[email protected]> * fixup! chore: Update the GitHub PR plugin version to 0.21.1
1 parent 069c634 commit 4c5e8c4

File tree

4 files changed

+14275
-8
lines changed

4 files changed

+14275
-8
lines changed

vscode-pull-request-github/Dockerfile

+8-7
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,24 @@
77
# SPDX-License-Identifier: EPL-2.0
88
#
99

10-
FROM registry.access.redhat.com/ubi8/nodejs-10
10+
FROM registry.access.redhat.com/ubi8/nodejs-14:1-50
1111

1212
ARG extension_repository
1313
ARG extension_revision
1414
ARG extension_name
1515

16+
COPY ./vscode.d.ts /out/
17+
COPY ./vscode.proposed.d.ts /out/
18+
1619
USER root
1720
WORKDIR /
1821

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
2223
RUN mkdir ./${extension_name}-src && cd ./${extension_name}-src && \
2324
git clone ${extension_repository} ${extension_name} && \
2425
cd ./${extension_name} && git checkout ${extension_revision} && \
2526
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 && \
2930
vsce package --out /${extension_name}-${extension_revision}.vsix
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"repository": "https://github.com/microsoft/vscode-pull-request-github",
3-
"revision": "0.20.0"
3+
"revision": "0.21.1"
44
}

0 commit comments

Comments
 (0)