Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,18 @@ FROM jnorwood/helm-docs:v1.14.2 as helm-docs
FROM cloudtooling/dev-buildbox-base:0.1.8

ARG BUILD_DATE
ENV BUILD_DATE $BUILD_DATE
ARG APP_VERSION

LABEL org.opencontainers.image.authors='Martin Reinhardt ([email protected])' \
org.opencontainers.image.created=$BUILD_DATE \
org.opencontainers.image.version=$APP_VERSION \
org.opencontainers.image.url='https://github.com/CloudTooling/dev-buildbox' \
org.opencontainers.image.documentation='https://github.com/CloudTooling/dev-buildbox' \
org.opencontainers.image.source='https://github.com/CloudTooling/dev-buildbox.git \
org.opencontainers.image.licenses='MIT'

ENV BUILD_DATE=$BUILD_DATE
ENV IMAGE_VERSION=$IMAGE_VERSION

ENV PIP_BREAK_SYSTEM_PACKAGES 1
ENV JAVA_17_HOME /opt/java/openjdk17
Expand Down
9 changes: 9 additions & 0 deletions Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ FROM debian:13-slim

ARG TARGETARCH
ARG BUILD_DATE
ARG APP_VERSION

LABEL org.opencontainers.image.authors='Martin Reinhardt ([email protected])' \
org.opencontainers.image.created=$BUILD_DATE \
org.opencontainers.image.version=$APP_VERSION \
org.opencontainers.image.url='https://github.com/CloudTooling/dev-buildbox' \
org.opencontainers.image.documentation='https://github.com/CloudTooling/dev-buildbox' \
org.opencontainers.image.source='https://github.com/CloudTooling/dev-buildbox.git \
org.opencontainers.image.licenses='MIT'

ENV BUILD_DATE $BUILD_DATE

Expand Down
Loading