mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-04 12:02:55 +00:00
Update client libraries and runtimes for Postgres libraries we test.
- `pg8000` works with Neon now 🎉
- `PostgresClientKit` still doesn't support SNI
9 lines
145 B
Docker
9 lines
145 B
Docker
FROM python:3.11
|
|
WORKDIR /source
|
|
|
|
COPY . .
|
|
|
|
RUN python3 -m pip install --no-cache-dir -r requirements.txt
|
|
|
|
CMD ["python3", "asyncpg_example.py"]
|