Files
neon/docker-compose/compute_wrapper/Dockerfile
Rahul Patil 0e2b347e53 fix(compute-build): Use system package instead of pip
python on debian 12 requires --break-system-packages flag
2024-09-18 10:58:29 +02:00

18 lines
510 B
Docker

ARG REPOSITORY=neondatabase
ARG COMPUTE_IMAGE=compute-node-v14
ARG TAG=latest
FROM $REPOSITORY/${COMPUTE_IMAGE}:$TAG
USER root
#Faker is required for the pg_anon test
RUN apt-get update && \
apt-get install -y curl \
jq \
python3-pip \
netcat-traditional \
faker
#This is required for the pg_hintplan test
RUN mkdir -p /ext-src/pg_hint_plan-src && chown postgres /ext-src/pg_hint_plan-src
USER postgres