profiles-web (d5a2830a89ef03dede74f7aacdd71319e1939b92)
Published 2026-08-27 21:59:10 +02:00 by octoturge
Installation
docker pull git.octoturge.com/octo-tech/profiles-web:d5a2830a89ef03dede74f7aacdd71319e1939b92sha256:725c7506fbcef8ead6ee2c58d75e9fbb9be421f787697c1339408a72ede977cf
Images
| Digest | OS / Arch | Size |
|---|---|---|
| 297bafb29d | linux/amd64 | 1.9 GiB |
Image Layers ( linux/amd64)
| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:cb9335ce6f27399c2b17787739d6675502767c53e0335ded2a5f0d003d996650 in / |
| CMD ["/bin/bash"] |
| ARG DEBIAN_FRONTEND=noninteractive |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt-get update && apt-get install -y --no-install-recommends locales sudo ca-certificates gnupg curl wget && locale-gen en_US.UTF-8 && apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* # buildkit |
| ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c curl -fsSL https://dl.google.com/linux/linux_signing_key.pub | gpg --dearmor -o /usr/share/keyrings/google-chrome.gpg && echo "deb [arch=amd64 signed-by=/usr/share/keyrings/google-chrome.gpg] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list && apt-get update && apt-get install -y google-chrome-stable && apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt-get update && apt-get install -y --no-install-recommends build-essential pkg-config cmake && apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt-get update && apt-get install -y --no-install-recommends clang llvm && apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt-get update && apt-get install -y --no-install-recommends git git-lfs jq unzip tar file htop tree tmux zsh openssh-client && git lfs install --system && apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt-get update && apt-get install -y --no-install-recommends libssl-dev libpq-dev libsqlite3-dev postgresql-client redis-tools sqlite3 && apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt-get update && apt-get install -y --no-install-recommends libwebkit2gtk-4.1-dev libayatana-appindicator3-dev librsvg2-dev libxdo-dev libgtk-3-dev libsoup-3.0-dev && apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt-get update && apt-get install -y --no-install-recommends libx11-dev libxext-dev libxrender-dev libxtst-dev libxi-dev && apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt-get update && apt-get install -y --no-install-recommends python3 python3-pip python3-venv python3-dev protobuf-compiler && apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt-get update && apt-get install -y --no-install-recommends libopencv-dev && apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && apt-get install -y --no-install-recommends nodejs && apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c npm install -g pnpm yarn # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c python3 -m pip install --break-system-packages --no-cache-dir numpy # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c python3 -m pip install --break-system-packages --no-cache-dir opencv-python-headless # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c python3 -m pip install --break-system-packages --no-cache-dir onnxruntime # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c python3 -m pip install --break-system-packages --no-cache-dir torch --index-url https://download.pytorch.org/whl/cpu # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c userdel -r ubuntu 2>/dev/null; groupdel ubuntu 2>/dev/null; useradd --uid 1000 --create-home --shell /bin/bash coder && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder && chmod 0440 /etc/sudoers.d/coder # buildkit |
| ENV RUST_BACKTRACE=1 RUSTUP_HOME=/home/coder/.rustup CARGO_HOME=/home/coder/.cargo BUN_INSTALL=/home/coder/.bun PNPM_HOME=/home/coder/.local/share/pnpm PATH=/home/coder/.cargo/bin:/home/coder/.bun/bin:/home/coder/.local/share/pnpm:/home/coder/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| USER coder |
| WORKDIR /home/coder |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile default && rm -rf "$RUSTUP_HOME"/tmp "$RUSTUP_HOME"/downloads # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c rustup component add rustfmt clippy rust-analyzer rust-src # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c rustup target add x86_64-unknown-linux-gnu # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c rustup target add x86_64-unknown-linux-musl # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c rustup target add aarch64-unknown-linux-gnu # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c rustup target add aarch64-unknown-linux-musl # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c cargo install --locked cargo-watch && rm -rf "$CARGO_HOME"/registry "$CARGO_HOME"/git # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c cargo install --locked cargo-edit && rm -rf "$CARGO_HOME"/registry "$CARGO_HOME"/git # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c cargo install --locked cross && rm -rf "$CARGO_HOME"/registry "$CARGO_HOME"/git # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c cargo install --locked bacon && rm -rf "$CARGO_HOME"/registry "$CARGO_HOME"/git # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c curl -fsSL https://bun.sh/install | bash # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c mkdir -p /home/coder/workspace # buildkit |
| WORKDIR /home/coder/workspace |
Labels
| Key | Value |
|---|---|
| org.opencontainers.image.version | 24.04 |
Details
2026-08-27 21:59:10 +02:00
Versions (1)
View all
Container
6
OCI / Docker
d5a2830a89ef03dede74f7aacdd71319e1939b92
2026-08-27