Block a user
lighthouse (0.20.1)
Published 2026-04-28 11:57:29 -04:00 by mysticmomba
Installation
docker pull git.racooncity.org/mysticmomba/lighthouse:0.20.1sha256:7aea95f55cc5eddb8aaa91ab98f53a5ed0827d849b810d7f536dcf729ae46c48
Images
| Digest | OS / Arch | Size |
|---|---|---|
| bb2a6079c4 | linux/arm64 | 38 MiB |
| e0d1fed219 | linux/amd64 | 38 MiB |
Image Layers ( linux/amd64)
| # debian.sh --arch 'amd64' out/ 'trixie' '@1776729600' |
| ARG TARGETARCH=amd64 |
| RUN |1 TARGETARCH=amd64 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates tzdata && ln -snf /usr/share/zoneinfo/America/New_York /etc/localtime && echo "America/New_York" > /etc/timezone && rm -rf /var/lib/apt/lists/* # buildkit |
| WORKDIR /app |
| COPY /app/target/aarch64-unknown-linux-musl/release/lighthouse ./lighthouse-arm64 # buildkit |
| COPY /app/target/x86_64-unknown-linux-musl/release/lighthouse ./lighthouse-amd64 # buildkit |
| COPY /app/templates ./templates # buildkit |
| COPY /app/static ./static # buildkit |
| COPY /app/migrations ./migrations # buildkit |
| COPY /app/changelog.md ./CHANGELOG.md # buildkit |
| RUN |1 TARGETARCH=amd64 /bin/sh -c if [ "$TARGETARCH" = "arm64" ]; then mv lighthouse-arm64 lighthouse; else mv lighthouse-amd64 lighthouse; fi && rm -f lighthouse-arm64 lighthouse-amd64 # buildkit |
| RUN |1 TARGETARCH=amd64 /bin/sh -c mkdir -p /data # buildkit |
| EXPOSE [3000/tcp] |
| ENV RUST_LOG=lighthouse=info,tower_http=warn |
| ENV BIND_ADDR=0.0.0.0:3000 |
| CMD ["./lighthouse"] |