sutiks (sha256:0fce27ff43be160c4dcf893ee69527867839682580b2e1595ab3a9807e1dd5eb)
Published 2025-11-02 16:08:05 +00:00 by benfa
Installation
docker pull thecode.yabdabduis.com/benfa/sutiks@sha256:0fce27ff43be160c4dcf893ee69527867839682580b2e1595ab3a9807e1dd5ebsha256:0fce27ff43be160c4dcf893ee69527867839682580b2e1595ab3a9807e1dd5ebImage layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1757289600' |
| ENV NODE_TYPE=default |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends libstdc++6 openssl libncurses5 locales ca-certificates curl iputils-ping && if [ "$NODE_TYPE" = "worker" ]; then apt-get install -y --no-install-recommends python3 python3-pip; fi && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c if [ "$NODE_TYPE" = "worker" ]; then pip install crawl4ai boto3; fi # 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 && mkdir -p /var/lib/sutiks && chown nobody:root /var/lib/sutiks # buildkit |
| ENV MIX_ENV=prod |
| COPY --chown=nobody:root /app/_build/prod/rel/sutiks ./ # buildkit |
| COPY --chown=nobody:root /app/vector.so ./ # buildkit |
| USER nobody |
| CMD ["/app/bin/server"] |