Block a user
localskytracker/web (e6b7d75)
Published 2026-04-09 15:05:38 +00:00 by dfunnell
Installation
docker pull gitea.codewarp.org/tron/localskytracker/web:e6b7d75sha256:43d80571b16782fb1dc047c4f8d1e34d0557955006b9ff478d7142c86cf39100
Image Layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1769990400' |
| 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 map[3000/tcp:{}] |
| CMD ["./localsky-backend"] |