allzweckcontainer/Dockerfile

22 lines
448 B
Docker
Raw Normal View History

2024-05-07 00:00:24 +02:00
FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
# hadolint ignore=DL3008,DL3028
RUN apt-get update && \
apt-get -y --no-install-recommends install \
build-essential \
wget \
rsync \
openssh-client \
ca-certificates \
debhelper \
git \
curl \
yamllint \
2024-02-06 20:23:46 +01:00
s-nail \
2024-05-08 14:22:14 +02:00
python3-pip \
2024-05-08 14:24:39 +02:00
&& pip3 install --no-cache-dir --break-system-packages pylint==3.1.0 \
&& apt-get clean && \
rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*