allzweckcontainer/Dockerfile
Michael Grote 16768a0830
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
remove anything pylint related
2024-05-08 14:37:30 +02:00

20 lines
360 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 \
build-essential \
wget \
rsync \
openssh-client \
ca-certificates \
debhelper \
git \
curl \
yamllint \
s-nail \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*