buildimage/dockerfile
Tobias Schmidl 255b917b97
All checks were successful
ci/woodpecker/tag/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: Added ripgrep, switched to quiet apt-get instead of apt
2023-09-22 10:08:06 +02:00

29 lines
662 B
Plaintext

# SPDX-FileCopyrightText: 2023 Tobias Schmidl
#
# SPDX-License-Identifier: AGPL-3.0-or-later
FROM debian:bullseye-slim
ARG DEBIAN_FRONTEND=noninteractive
LABEL org.opencontainers.image.licenses="AGPL-3.0-or-later" \
org.opencontainers.image.base.name="docker.io/debian:bullseye-slim" \
org.opencontainers.image.title=buildimage
# editorconfig-checker-disable
RUN apt-get --quiet update \
&& apt-get install --assume-yes --no-install-recommends --quiet \
build-essential \
dpkg-sig \
git \
ripgrep \
&& find /var/lib/apt -type f -delete
# editorconfig-checker-enable
RUN useradd -rm builder
USER builder
WORKDIR /workdir