mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-17 02:12:56 +00:00
18 lines
510 B
Docker
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 |