allzweckcontainer/Dockerfile

21 lines
447 B
Docker
Raw Normal View History

FROM ubuntu:jammy@sha256:e6173d4dc55e76b87c4af8db8821b1feae4146dd47341e4d431118c7dd060a74
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-01-24 21:30:12 +01:00
s-nail \
2024-01-29 11:56:29 +01:00
shellcheck \
&& apt-get clean && \
rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*