From 95a91405162cd494e046c8fba9d05badf57dd215 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 29 Oct 2024 00:58:14 +0000 Subject: [PATCH] chore(deps): update major-release --- data/requirements.txt | 2 +- webclient/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/requirements.txt b/data/requirements.txt index 96cb206e8..4b22dba70 100644 --- a/data/requirements.txt +++ b/data/requirements.txt @@ -4,7 +4,7 @@ defusedxml==0.7.1 lxml==5.3.0 Pillow==11.0.0 polars==1.9.0 -pyarrow==17.0.0 +pyarrow==18.0.0 pydantic==2.9.2 pyyaml==6.0.2 requests==2.32.3 diff --git a/webclient/Dockerfile b/webclient/Dockerfile index 0fab4e8f9..4ca6b066f 100644 --- a/webclient/Dockerfile +++ b/webclient/Dockerfile @@ -1,7 +1,7 @@ # https://docs.docker.com/build/attestations/sbom/#scan-build-context ARG BUILDKIT_SBOM_SCAN_CONTEXT=true -FROM node:21-alpine3.19 AS build-stage +FROM node:22-alpine3.19 AS build-stage WORKDIR /app ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" @@ -26,7 +26,7 @@ COPY app app RUN pnpm run build -FROM node:21-alpine3.19 AS production-stage +FROM node:22-alpine3.19 AS production-stage RUN apk update --no-progress --quiet && \ apk add --no-cache --no-progress --quiet curl