Block a user
sendthisfax (3214513)
Published 2026-04-10 20:46:05 +00:00 by mokhtar
Installation
docker pull git.mial.net/mokhtar/sendthisfax:3214513sha256:d3b024064dae32ba879320aa0734adc76cccca1aaec7e6267fa87482d7b2fc5d
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/v24.14.0/node-v24.14.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"] |