neon-operator/orig-compose/compute_wrapper/Dockerfile

17 lines
336 B
Docker
Raw Normal View History

2024-05-25 10:51:02 -04:00
ARG REPOSITORY=neondatabase
ARG COMPUTE_IMAGE=compute-node-v14
ARG TAG=latest
FROM $REPOSITORY/${COMPUTE_IMAGE}:$TAG
USER root
RUN apt-get update && \
apt-get install -y curl \
jq \
netcat
ADD ./var/db/postgres/specs /var/db/postgres/specs
ADD ./shell/ /shell
USER postgres