This repository contains a Dockerfile to build a lightweight Alpine Linux-based Docker image with PostgreSQL client tools and curl.
The Docker image is automatically built and published to Docker Hub at: jnovent/postgres-client
- Alpine Linux (latest)
- PostgreSQL client (
postgresql-client) - curl
The Docker image is automatically rebuilt every Monday morning at 8:00 AM UTC using GitHub Actions.
To build the image locally:
docker build -t postgres-client .# Pull and run the latest image
docker pull jnovent/postgres-client:latest
docker run -it jnovent/postgres-client:latest /bin/sh
# Use PostgreSQL client tools
docker run -it jnovent/postgres-client:latest psql --help