allzweckcontainer/Dockerfile

17 lines
322 B
Docker
Raw Normal View History

2022-08-06 11:07:52 +02:00
FROM ubuntu:focal
2022-08-06 21:09:20 +02:00
ENV DEBIAN_FRONTEND=noninteractive
2022-08-06 11:07:52 +02:00
# hadolint ignore=DL3008,DL3028
RUN apt-get update && \
apt-get -y --no-install-recommends install \
build-essential \
wget \
rsync \
openssh-client \
2023-06-28 14:25:24 +02:00
ca-certificates \
2022-08-06 11:07:52 +02:00
git \
2022-08-06 11:22:37 +02:00
curl \
2022-08-06 11:07:52 +02:00
&& apt-get clean && \
rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*