extend labels, added git
This commit is contained in:
parent
c3f0b11a7f
commit
e0dc27bf8c
2 changed files with 14 additions and 2 deletions
13
dockerfile
13
dockerfile
|
@ -6,12 +6,23 @@ 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:stable-slim" \
|
||||
org.opencontainers.image.title=buildimage
|
||||
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"
|
||||
|
||||
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…
Add table
Add a link
Reference in a new issue