11 lines
316 B
Docker
11 lines
316 B
Docker
FROM ubuntu:24.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# hadolint ignore=DL3008,DL3028
|
|
RUN apt-get update \
|
|
&& apt-get -y --no-install-recommends install \
|
|
python3-full \
|
|
&& pip3 install --no-cache-dir --break-system-packages pylint==3.1.0 \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*
|