Removed label
All checks were successful
Build and Push Docker Images / build-and-push (push) Successful in 1m49s

This commit is contained in:
Adrien Bouvais 2026-08-15 18:03:21 +02:00
parent 0aa9488627
commit 74da180a07
2 changed files with 1 additions and 8 deletions

View File

@ -1,9 +1,5 @@
FROM python:3.12-slim-bookworm AS base FROM python:3.12-slim-bookworm AS base
LABEL org.opencontainers.image.title="tenant-base" \
org.opencontainers.image.description="Hardened base image for tenant workspaces" \
org.opencontainers.image.source="https://git.bouvais.lu/adrien/"
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \ ca-certificates \
curl \ curl \

View File

@ -1,9 +1,6 @@
ARG BASE_IMAGE
FROM ${BASE_IMAGE} FROM ${BASE_IMAGE}
LABEL org.opencontainers.image.title="tenant-jupyter" \
org.opencontainers.image.description="JupyterLab image built on tenant-base" \
org.opencontainers.image.base.name="${BASE_IMAGE}"
USER root USER root
COPY --chown=appuser:appuser requirements.txt /tmp/requirements.txt COPY --chown=appuser:appuser requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt \ RUN pip install --no-cache-dir -r /tmp/requirements.txt \