chorister (latest)
Published 2025-12-19 11:51:04 +01:00 by rouven
Installation
docker pull code.rouvenmalecki.net/rouven/chorister:latestsha256:03fe74682dbe9a268b5924f2bf45e253205c8a09e2eeb7421bf84e4b4c5cf288Image layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1765152000' |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends libstdc++6 openssl libncurses5 locales ca-certificates && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen # buildkit |
| ENV LANG=en_US.UTF-8 |
| ENV LANGUAGE=en_US:en |
| ENV LC_ALL=en_US.UTF-8 |
| WORKDIR /app |
| RUN /bin/sh -c chown nobody /app # buildkit |
| ENV MIX_ENV=prod |
| COPY --chown=nobody:root /app/_build/prod/rel/lumina ./ # buildkit |
| USER nobody |
| CMD ["/app/bin/server"] |