diff --git a/images/base/dockerfile b/images/base/dockerfile index c395a96..942a402 100644 --- a/images/base/dockerfile +++ b/images/base/dockerfile @@ -1,9 +1,5 @@ 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 \ ca-certificates \ curl \ diff --git a/images/jupyter/dockerfile b/images/jupyter/dockerfile index 8db6719..135550c 100644 --- a/images/jupyter/dockerfile +++ b/images/jupyter/dockerfile @@ -1,9 +1,6 @@ +ARG 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 COPY --chown=appuser:appuser requirements.txt /tmp/requirements.txt RUN pip install --no-cache-dir -r /tmp/requirements.txt \