File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1616
1717# build from the root of this repo:
1818# docker build -t gcr.io/repo-automation-bots/owlbot-nodejs -f docker/owlbot/nodejs/Dockerfile .
19- FROM python:3.10.12 -bookworm
19+ FROM python:3.10.16 -bookworm
2020WORKDIR /
2121
2222RUN apt-get update && \
2323 apt-get upgrade -y
2424
2525# ##################### Install nodejs.
26- RUN curl https://nodejs.org/dist/v18.17.0 /node-v18.17.0 -linux-x64.tar.xz > /tmp/nodejs.tar.xz
26+ RUN curl https://nodejs.org/dist/v18.20.8 /node-v18.20.8 -linux-x64.tar.xz > /tmp/nodejs.tar.xz
2727RUN tar -C /usr/local --strip-components=1 -xJf /tmp/nodejs.tar.xz
2828RUN rm -f /tmp/nodejs.tar.xz
2929ENV PATH "$PATH:/usr/local/bin"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ schemaVersion: 1.0.0
22commandTests :
33- name : " node"
44 command : ["node", "--version"]
5- expectedOutput : ["v18.17.0 "]
5+ expectedOutput : ["v18.20.8 "]
66- name : " python"
77 command : ["python", "--version"]
8- expectedOutput : ["Python 3.10.12 "]
8+ expectedOutput : ["Python 3.10.16 "]
You can’t perform that action at this time.
0 commit comments