2026-03-27 20:32:50 +01:00
|
|
|
# Slim runtime image — uses pre-built binaries from the release.
|
|
|
|
|
# The full Dockerfile (multi-stage Rust build) is for local development.
|
|
|
|
|
# CI uses this to avoid 60+ min QEMU cross-compilation.
|
|
|
|
|
ARG BINARY_DIR=binaries
|
|
|
|
|
|
|
|
|
|
FROM ubuntu:24.04
|
|
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
|
ca-certificates \
|
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
|
ARG BINARY_DIR
|
|
|
|
|
COPY ${BINARY_DIR}/webclaw /usr/local/bin/webclaw
|
|
|
|
|
COPY ${BINARY_DIR}/webclaw-mcp /usr/local/bin/webclaw-mcp
|
|
|
|
|
|
2026-04-17 15:57:47 +02:00
|
|
|
# Entrypoint shim: forwards webclaw args/URL to the binary, but exec's other
|
|
|
|
|
# commands directly so this image can be used as a FROM base with custom CMD.
|
|
|
|
|
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
|
|
|
|
|
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
|
|
|
|
|
|
|
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
|
|
|
CMD ["webclaw", "--help"]
|