allzweckcontainer/Dockerfile

20 lines
360 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
2024-05-08 14:30:38 +02:00
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:30:38 +02:00
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*