Menu
AkurAI-Build
publicLatest change 0cf28150faedd8c150474a4f16be4c9922c04f56 - feat: add Ponytail UI design system by Olafur Bui
# Build context: a completed `bunfork deploy` output, never the source checkout.
# The deployed binary currently requires GLIBC_2.39; use a runtime newer than
# Debian bookworm rather than silently shipping an image that cannot start.
FROM debian:trixie-slim
RUN groupadd --system bunfork \
&& useradd --system --gid bunfork --home-dir /var/lib/bunfork --create-home bunfork
WORKDIR /opt/bunfork
COPY . /opt/bunfork/
RUN chmod -R go-w /opt/bunfork \
&& chmod 0555 /opt/bunfork/bunfork /opt/bunfork/entrypoint.sh \
&& mkdir -p /var/lib/bunfork /run/bunfork \
&& chown -R bunfork:bunfork /var/lib/bunfork /run/bunfork
USER bunfork
EXPOSE 3100/tcp
ENTRYPOINT ["/opt/bunfork/entrypoint.sh"]