mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-03 19:42:55 +00:00
Closes https://github.com/neondatabase/neon/issues/2697 Example: https://github.com/neondatabase/neon/actions/runs/3416774593/jobs/5688394855 Adds a set of tests on the storage Docker images before they are pushed to the public registries: * tests that pageserver binary has the correct version string (other binaries are built with the same library, so it should be enough to test one) * tests that the compose file set-up works and all components are able to start and perform a single SQL query (CREATE TABLE)
14 lines
299 B
Docker
14 lines
299 B
Docker
ARG REPOSITORY=369495373322.dkr.ecr.eu-central-1.amazonaws.com
|
|
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
|
|
|
|
USER postgres
|