mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-07 13:32:57 +00:00
11 lines
223 B
Docker
11 lines
223 B
Docker
ARG COMPUTE_IMAGE=compute-node-v14:latest
|
|
FROM neondatabase/${COMPUTE_IMAGE}
|
|
|
|
USER root
|
|
RUN apt-get update && \
|
|
apt-get install -y curl \
|
|
jq \
|
|
netcat
|
|
|
|
USER postgres
|