mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-08-01 09:13:23 +08:00

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
12 lines
209 B
Docker
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"]
|