buildimage/dockerfile
Tobias Schmidl 874ecd0c01
All checks were successful
ci/woodpecker/tag/woodpecker Pipeline was successful
fix: Repaired pushing to registry
Reviewed-on: #2
Co-authored-by: Tobias Schmidl <tobias@schmidl.dev>
Co-committed-by: Tobias Schmidl <tobias@schmidl.dev>
2023-09-22 08:34:50 +02:00

27 lines
628 B
Text

# 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 update \
&& apt install --assume-yes --no-install-recommends --quiet \
build-essential \
dpkg-sig \
git \
&& find /var/lib/apt -type f -delete
# editorconfig-checker-enable
RUN useradd -rm builder
USER builder
WORKDIR /workdir