Files
neon/test_runner/pg_clients/python/pg8000/Dockerfile
T

9 lines
144 B
Docker

FROM python:3.12
WORKDIR /source
COPY . .
RUN python3 -m pip install --no-cache-dir -r requirements.txt
CMD ["python3", "pg8000_example.py"]