mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-06 21:12:55 +00:00
* Add tests for different postgres clients * test/fixtures: sanitize test name for test_output_dir * test/fixtures: do not look for etcd before runtime * Add workflow for testing Postgres client libraries
9 lines
144 B
Docker
9 lines
144 B
Docker
FROM python:3.10
|
|
WORKDIR /source
|
|
|
|
COPY . .
|
|
|
|
RUN python3 -m pip install --no-cache-dir -r requirements.txt
|
|
|
|
CMD ["python3", "pg8000_example.py"]
|