Block a user
localskytracker/web (c9d5820)
Published 2026-04-09 13:59:40 +00:00 by dfunnell
Installation
docker pull gitea.codewarp.org/tron/localskytracker/web:c9d5820sha256:8627954e6956ac0c1e3b345f96436098e4266e92a1b1a0d77357545f15d45f88
Image Layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1775433600' |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c groupadd -r appuser && useradd -r -g appuser -s /bin/false appuser # buildkit |
| WORKDIR /app |
| COPY /build/target/release/localsky-backend ./localsky-backend # buildkit |
| COPY /build/build ./static # buildkit |
| COPY data/ ./data/ # buildkit |
| USER appuser |
| ENV RUST_LOG=info |
| ENV LOCALSKY_STATIC_DIR=/app/static |
| ENV LOCALSKY_STAR_CATALOG=/app/data/hipparcos_mag55.json |
| EXPOSE [3000/tcp] |
| CMD ["./localsky-backend"] |