This repository has been archived on 2024-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
pylint/Dockerfile

15 lines
368 B
Text
Raw Normal View History

2024-05-08 14:38:53 +02:00
FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
2024-05-08 15:03:08 +02:00
WORKDIR /
2024-05-08 15:02:11 +02:00
COPY requirements.txt .
2024-05-08 14:38:53 +02:00
# hadolint ignore=DL3008,DL3028
RUN apt-get update \
&& apt-get -y --no-install-recommends install \
2024-05-08 14:47:27 +02:00
python3-full python3-pip \
2024-05-08 15:02:11 +02:00
&& pip install --no-cache-dir --break-system-packages -r requirements.txt \
2024-05-08 14:38:53 +02:00
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*