6 lines
226 B
Docker
6 lines
226 B
Docker
FROM docker:latest
|
|
|
|
RUN set -eux;
|
|
RUN apk add --no-cache python3 py3-pip openssl-dev bash git;
|
|
RUN python3 -m pip install -U pip;
|
|
RUN pip3 install pybuilder ddadevops deprecation dda-python-terraform boto3 pyyaml inflection;
|