diff --git a/docker/build_and_push.Dockerfile b/docker/build_and_push.Dockerfile index 0dd015023..2db2e31ea 100644 --- a/docker/build_and_push.Dockerfile +++ b/docker/build_and_push.Dockerfile @@ -68,7 +68,9 @@ FROM python:3.12.3-slim AS runtime RUN apt-get update \ && apt-get upgrade -y \ - && apt-get install -y git libpq5 curl \ + && apt-get install -y curl git libpq5 gnupg \ + && curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \ + && apt-get install -y nodejs \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ && useradd user -u 1000 -g 0 --no-create-home --home-dir /app/data diff --git a/docker/build_and_push_base.Dockerfile b/docker/build_and_push_base.Dockerfile index 472470506..512ce0b09 100644 --- a/docker/build_and_push_base.Dockerfile +++ b/docker/build_and_push_base.Dockerfile @@ -73,7 +73,9 @@ FROM python:3.12.3-slim AS runtime RUN apt-get update \ && apt-get upgrade -y \ - && apt-get install -y git libpq5 curl \ + && apt-get install -y git libpq5 curl gnupg \ + && curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \ + && apt-get install -y nodejs \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ && useradd user -u 1000 -g 0 --no-create-home --home-dir /app/data diff --git a/docker/build_and_push_ep.Dockerfile b/docker/build_and_push_ep.Dockerfile index b4c419104..b13493bbd 100644 --- a/docker/build_and_push_ep.Dockerfile +++ b/docker/build_and_push_ep.Dockerfile @@ -73,6 +73,9 @@ RUN apt-get update \ git \ # Add PostgreSQL client libraries libpq5 \ + gnupg \ + && curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \ + && apt-get install -y nodejs \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ && useradd user -u 1000 -g 0 --no-create-home --home-dir /app/data \