fake-stripe (db69de2)
Published 2026-05-19 19:30:21 +00:00 by elliot
Installation
docker pull git.elliotblackburn.com/elliot/fake-stripe:db69de2sha256:eb0773fced1ac8f9b60728a4ae9358c1c396453e0e4ca13833d98ac548358e41Image layers
| # debian.sh --arch 'arm64' out/ 'trixie' '@1777939200' |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends libstdc++6 openssl libncurses6 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/fake_stripe ./ # buildkit |
| USER nobody |
| CMD ["/app/bin/server"] |