cloudron-numen (sha256:4653b94043edcbc374d017fea58af3481221eb232ab625bb57484acce763fa02)
Published 2026-09-14 16:00:44 +00:00 by timconsidine
Installation
docker pull forgejo.tcjc.uk/cca/cloudron-numen@sha256:4653b94043edcbc374d017fea58af3481221eb232ab625bb57484acce763fa02sha256:4653b94043edcbc374d017fea58af3481221eb232ab625bb57484acce763fa02About this package
Minimal Ubuntu-based base image for Cloudron apps
Image layers
| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:de4937ce3dfc7c89f05f1503c52434f0a631ac84995f0df65eed0754e5c97d48 in / |
| CMD ["/bin/bash"] |
| LABEL maintainer=Tim Considine |
| LABEL org.opencontainers.image.title=cloudron-minibase |
| LABEL org.opencontainers.image.description=Minimal Ubuntu-based base image for Cloudron apps |
| LABEL org.opencontainers.image.version=0.0.1 |
| ENV DEBIAN_FRONTEND=noninteractive |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends bash gosu ca-certificates locales tzdata curl wget tar gzip unzip jq rsync sed gawk grep findutils coreutils less nano procps iproute2 net-tools iputils-ping sudo && locale-gen en_US.UTF-8 && rm -rf /var/lib/apt/lists/* # buildkit |
| ENV LANG=en_US.UTF-8 |
| ENV LC_ALL=en_US.UTF-8 |
| ENV LANGUAGE=en_US:en |
| RUN /bin/sh -c groupadd -o -g 1000 cloudron && useradd -o -u 1000 -g cloudron -d /app/data -s /bin/bash cloudron && mkdir -p /app/code /app/data && chown cloudron:cloudron /app/data # buildkit |
| WORKDIR /app/code |
| CMD ["bash"] |
| RUN /bin/sh -c mkdir -p /app/code /app/data # buildkit |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl micro python3 python3-pip python3-venv && rm -rf /var/lib/apt/lists/* # buildkit |
| WORKDIR /app/code |
| COPY requirements.txt /app/code/requirements.txt # buildkit |
| RUN /bin/sh -c python3 -m venv /app/code/venv && /app/code/venv/bin/pip install --no-cache-dir --upgrade pip && /app/code/venv/bin/pip install --no-cache-dir -r /app/code/requirements.txt # buildkit |
| COPY defaults /app/code/defaults # buildkit |
| COPY src /app/code/src # buildkit |
| COPY templates /app/code/templates # buildkit |
| COPY static /app/code/static # buildkit |
| COPY start.sh /app/code/start.sh # buildkit |
| COPY cloudron-numen-logo.png /app/code/cloudron-numen-logo.png # buildkit |
| COPY DESCRIPTION.md /app/code/DESCRIPTION.md # buildkit |
| COPY POSTINSTALL.md /app/code/POSTINSTALL.md # buildkit |
| COPY README.md /app/code/README.md # buildkit |
| RUN /bin/sh -c chmod +x /app/code/start.sh # buildkit |
| CMD ["/app/code/start.sh"] |
Labels
| Key | Value |
|---|---|
| maintainer | Tim Considine |
| org.opencontainers.image.description | Minimal Ubuntu-based base image for Cloudron apps |
| org.opencontainers.image.title | cloudron-minibase |
| org.opencontainers.image.version | 0.0.1 |