This commit is contained in:
2026-04-21 21:44:59 +03:00
parent e95a2d9bbc
commit 3065a31d08
3 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
FROM alpine:3.23
RUN apk add --no-cache bash curl
RUN addgroup -g 1000 kimi && \
adduser -D -u 1000 -G kimi kimi
USER kimi
WORKDIR /home/kimi
RUN curl -fsSL https://astral.sh/uv/install.sh | sh
RUN /home/kimi/.local/bin/uv tool install --python 3.13 kimi-cli
ENV PATH="/home/kimi/.local/bin:${PATH}"
WORKDIR /workspace
ENTRYPOINT ["kimi"]