mirror of
https://github.com/0xMassi/webclaw.git
synced 2026-05-13 17:02:36 +02:00
16 lines
490 B
Text
16 lines
490 B
Text
# 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}/noxa /usr/local/bin/noxa
|
|
COPY ${BINARY_DIR}/noxa-mcp /usr/local/bin/noxa-mcp
|
|
|
|
CMD ["noxa"]
|