Block a user
sendthisfax (9585744f9a92b926654f71a1fe9e9d099ac4c111)
Published 2026-03-15 20:47:00 +00:00 by mokhtar
Installation
docker pull git.mial.net/mokhtar/sendthisfax:9585744f9a92b926654f71a1fe9e9d099ac4c111sha256:547392694d54feb826b3fe0dfb4c76b3eb5bb1ff78c1327d70deada808723148
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"] |