mirror of
https://github.com/neondatabase/neon.git
synced 2026-08-18 12:08:19 +00:00
259a5f356e
Co-authored-by: Masahiro Ikeda <masahiro.ikeda.us@hco.ntt.co.jp>
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
|