Files
Joe McGinley a164d37a3c Chore: Drop support for Python 3.8 (#3399)
Python 3.8 was EoL @ 2024-10-07, our 6 month promise for support ended on 2024-04-07.

Changes:
* Updated basline refs to 3.9
* Removed 3.8 sys.version_info checks
* Fixed botocore test failure
* Applied ruff formatting
2025-05-27 17:26:02 +02:00

12 lines
209 B
Docker

FROM python:3.9
RUN apt-get update -y && apt-get install libsnappy-dev -y
WORKDIR /code
COPY . .
RUN pip install -e .
RUN pip install -r ./example/requirements.txt
CMD ["python", "./example/sampleapp.py"]