Block a user
apply-core (latest)
Published 2026-06-02 08:52:58 -05:00 by igorbachurin
Installation
docker pull git.050080.xyz/igorbachurin/apply-core:latestsha256:a4b803fc1e52624a677caf4739cf454c8ea34644d2e8c15a50622876686fc29d
Images
| Digest | OS / Arch | Size |
|---|---|---|
| 1c614696b9 | linux/amd64 | 41 MiB |
Image Layers ( linux/amd64)
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1779062400' |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c useradd --system --uid 10001 --create-home --home-dir /app apply # buildkit |
| WORKDIR /app |
| COPY /app/target/release/apply-core /usr/local/bin/apply-core # buildkit |
| COPY /app/acceptance /app/acceptance # buildkit |
| RUN /bin/sh -c mkdir -p /data/run-artifacts && chown -R apply:apply /app /data # buildkit |
| USER apply |
| ENV APP_HOST=0.0.0.0 APP_PORT=3000 RUST_LOG=info RUN_ARTIFACT_ROOT=/data/run-artifacts |
| EXPOSE [3000/tcp] |
| ENTRYPOINT ["apply-core"] |
| CMD ["serve"] |