Ubuntu image for CI/CD for python code
1.3K
Dockerfile:
FROM ubuntu:20.04
# install
RUN apt-get -qq update && apt-get -qq install -y pip git
# install python packages
RUN pip3 install pylint
RUN pip3 install pytest-bdd
RUN pip3 install flake8
RUN pip3 install setuptools
RUN pip3 install Cython
RUN pip3 install virtualenv
RUN pip3 install pycodestyle
RUN pip3 install chevron
Content type
Image
Digest
Size
187.7 MB
Last updated
over 4 years ago
docker pull chrisdsa/python_cicd:3.8