Compare commits
No commits in common. "f47146583ec44622b48c472f23aaba0ed4aff9a1" and "6880d62a0fe89d6fd25940f4b4900f74486abd32" have entirely different histories.
f47146583e
...
6880d62a0f
1 changed files with 11 additions and 15 deletions
26
dockerfile
26
dockerfile
|
@ -2,31 +2,27 @@
|
|||
#
|
||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
FROM debian:bullseye-slim
|
||||
FROM debian:stable-slim
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
ARG GIT_COMMIT
|
||||
ARG VERSION
|
||||
ARG TIMESTAMP
|
||||
LABEL org.opencontainers.image.licenses="AGPL-3.0-or-later" \
|
||||
org.opencontainers.image.base.name="docker.io/debian:bullseye-slim" \
|
||||
org.opencontainers.image.base.name="docker.io/debian:stable-slim" \
|
||||
org.opencontainers.image.title=buildimage \
|
||||
org.opencontainers.image.source="https://git.schmidl.dev/schtobia/buildimage" \
|
||||
org.opencontainers.image.url="https://git.schmidl.dev/schtobia/buildimage"
|
||||
|
||||
RUN apt update \
|
||||
&& apt install --assume-yes --no-install-recommends \
|
||||
build-essential \
|
||||
dpkg-sig \
|
||||
git \
|
||||
&& find /var/lib/apt -type f -delete
|
||||
|
||||
RUN useradd -rm builder
|
||||
|
||||
USER builder
|
||||
|
||||
WORKDIR /workdir
|
||||
|
||||
LABEL org.opencontainers.image.revision=${GIT_COMMIT}
|
||||
LABEL org.opencontainers.image.version=${VERSION}
|
||||
LABEL org.opencontainers.image.created=${TIMESTAMP}
|
||||
|
||||
RUN apt update \
|
||||
&& apt install --assume-yes --no-install-recommends \
|
||||
build-essential \
|
||||
git \
|
||||
&& find /var/lib/apt -type f -delete
|
||||
|
||||
VOLUME /workdir
|
||||
WORKDIR /workdir
|
||||
|
|
Loading…
Reference in a new issue