You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
291 B
Docker
8 lines
291 B
Docker
# Dockerfile to run the test suite and linter
|
|
FROM python:slim
|
|
RUN pip install flake8 flake8-import-order doc8 yamllint \
|
|
&& apt-get update \
|
|
&& apt-get install -y locales \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
|