diff --git a/Dockerfile.deepnote b/Dockerfile.deepnote index 5faa7a4010dc..5a85d1d2f945 100644 --- a/Dockerfile.deepnote +++ b/Dockerfile.deepnote @@ -1,18 +1,18 @@ -FROM node:18.20.1-bullseye-slim +FROM node:22.14.0-bookworm-slim ENV AWSCLI_VERSION=2.10.1 RUN apt update && apt install -y --no-install-recommends \ - curl ca-certificates bash \ - postgresql-client \ - # Needed to install awscli - unzip \ - git \ - patch \ - python3-pip \ - && rm -rf /var/lib/apt/lists/* + curl ca-certificates bash \ + postgresql-client \ + # Needed to install awscli + unzip \ + git \ + patch \ + python3-pip \ + && rm -rf /var/lib/apt/lists/* RUN cd /tmp && git clone -b deepnote-v2.1 --single-branch --depth 1 https://github.com/deepnote/aws-cli && \ - cd /tmp/aws-cli && \ - pip install . + cd /tmp/aws-cli && \ + pip install . --break-system-packages