8000 test: change base Debian image from Debian 9 to Debian 11 to include a supported Python3 version for node-gyp by wyk9787 · Pull Request #187 · google/pprof-nodejs · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

test: change base Debian image from Debian 9 to Debian 11 to include a supported Python3 version for node-gyp #187

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Oct 14, 2021
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1c73c26
Install Python 3.6 as a dependency for node-gyp
wyk9787 Oct 11, 2021
46abe21
Change from python to python3.6
wyk9787 Oct 12, 2021
d1455a7
Modify how we fetch Python 3.6
wyk9787 Oct 12, 2021
5078e62
Fix the Python3.6 issue
wyk9787 Oct 12, 2021
93e5989
Fix the Python3.6 issue
wyk9787 Oct 12, 2021
14fa22b
Fix the Python3.6 issue
wyk9787 Oct 12, 2021
3c249e0
Fix the Python3.6 issue
wyk9787 Oct 13, 2021
3e8fc8b
Fix the Python3.6 issue
wyk9787 Oct 13, 2021
47a87e0
Fix the Python3.6 issue
wyk9787 Oct 13, 2021
6764053
Fix the Python3.6 issue
wyk9787 Oct 13, 2021
4275e26
Fix the Python3.6 issue
wyk9787 Oct 13, 2021
541da6b
Fix the Python3.6 issue
wyk9787 Oct 13, 2021
9bb40f6
Fix the Python3.6 issue
wyk9787 Oct 13, 2021
09e0176
Fix the Python3.6 issue
wyk9787 Oct 13, 2021
b6210eb
Fix the Python3.6 issue
wyk9787 Oct 13, 2021
df38a84
Fix the Python3.6 issue
wyk9787 Oct 13, 2021
2874c2a
Fix the Python3.6 issue
wyk9787 Oct 13, 2021
d68d457
Fix the Python3.6 issue
wyk9787 Oct 13, 2021
57afee0
Fix the Python3.6 issue
wyk9787 Oct 13, 2021
753e7fa
Fix the Python3.6 issue
wyk9787 Oct 14, 2021
62f59de
Fix the Python3.6 issue
wyk9787 Oct 14, 2021
04eca9b
Fix the Python3.6 issue
wyk9787 Oct 14, 2021
9bb5554
Fix the Python3.6 issue
wyk9787 Oct 14, 2021
4607fcd
Fix the Python3.6 issue
wyk9787 Oct 14, 2021
d21093c
Fix the Python3.6 issue
wyk9787 Oct 14, 2021 8000
b15c2d7
Fix the Python3.6 issue
wyk9787 Oct 14, 2021
a2ca64d
Fix the Python3.6 issue
wyk9787 Oct 14, 2021
0890b34
Fix the Python3.6 issue
wyk9787 Oct 14, 2021
825d725
Fix the Python3.6 issue
wyk9787 Oct 14, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion system-test/Dockerfile.linux
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y \
WORKDIR /root/
RUN go get github.com/google/pprof

FROM debian:stretch
FROM debian:11

ARG NODE_VERSION
ARG NVM_NODEJS_ORG_MIRROR
Expand Down
0