cloudron-minibase-test (sha256:13fdf317ab2b53243ac09370385c4250ade276dfda3c7353eb279c3ae1cba428)
Published 2026-09-12 19:44:06 +00:00 by timconsidine
Installation
docker pull forgejo.tcjc.uk/cca/cloudron-minibase-test@sha256:13fdf317ab2b53243ac09370385c4250ade276dfda3c7353eb279c3ae1cba428sha256:13fdf317ab2b53243ac09370385c4250ade276dfda3c7353eb279c3ae1cba428About 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 apt-get update && apt-get install -y --no-install-recommends python3 python3-pip python3-venv && rm -rf /var/lib/apt/lists/* # buildkit |
| WORKDIR /app/code |
| COPY requirements.txt . # buildkit |
| RUN /bin/sh -c pip install --no-cache-dir --break-system-packages -r requirements.txt # buildkit |
| COPY app.py . # buildkit |
| COPY start.sh /app/code/start.sh # 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 |