Block a user
sendthisfax (017debb)
Published 2026-03-12 21:13:44 +00:00 by mokhtar
Installation
docker pull git.mial.net/mokhtar/sendthisfax:017debbsha256:743519cd442ab4df09555cfc1a4e1c4e7afab8f6aeac883f7974c39df506a57e
Image Layers
| # debian.sh --arch 'amd64' out/ 'trixie' '@1763337600' |
| RUN /bin/sh -c apt-get update -y && apt-get install -y libstdc++6 openssl libncurses6 locales ca-certificates curl xz-utils poppler-utils # buildkit |
| RUN /bin/sh -c curl -L -o node.tar.xz "https://nodejs.org/dist/v22.12.0/node-v22.12.0-linux-x64.tar.xz" && tar -xJf node.tar.xz -C /usr/local --strip-components=1 && rm node.tar.xz && ln -s /usr/local/bin/node /usr/local/bin/nodejs # buildkit |
| RUN /bin/sh -c apt-get remove -y curl xz-utils && apt-get -y autoremove && apt-get clean && rm -f /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/send_this_fax ./ # buildkit |
| USER nobody |
| CMD ["/app/bin/server"] |