Skip to content

Commit 1e798e6

Browse files
authored
chore: update owlbot-nodejs dependencies (#2075)
* chore: update owlbot-nodejs dependencies * Update container_test.yaml
1 parent 490078a commit 1e798e6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker/owlbot/nodejs/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
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
2020
WORKDIR /
2121

2222
RUN 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
2727
RUN tar -C /usr/local --strip-components=1 -xJf /tmp/nodejs.tar.xz
2828
RUN rm -f /tmp/nodejs.tar.xz
2929
ENV PATH "$PATH:/usr/local/bin"

docker/owlbot/nodejs/container_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ schemaVersion: 1.0.0
22
commandTests:
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"]

0 commit comments

Comments
 (0)