2023-07-13 06:52:46 +00:00
|
|
|
FROM python:3.10-alpine
|
|
|
|
|
|
|
|
RUN set -eux;
|
|
|
|
RUN apk add --no-cache build-base rust python3 python3-dev py3-pip py3-setuptools py3-wheel libffi-dev openssl-dev cargo bash git;
|
|
|
|
RUN python3 -m pip install -U pip;
|
|
|
|
RUN pip3 install pybuilder ddadevops deprecation dda-python-terraform boto3 pyyaml inflection;
|
|
|
|
RUN pip3 install coverage flake8 flake8-polyfill mypy mypy-extensions pycodestyle pyflakes pylint pytest pytest-cov pytest-datafiles types-setuptools types-PyYAML;
|
2023-08-15 06:28:15 +00:00
|
|
|
RUN pip3 install --upgrade ddadevops --pre
|