File size: 389 Bytes
3c3783a b163b3f 3c3783a b163b3f 3c3783a 9e58c68 b163b3f 9e58c68 b163b3f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # Use pre-built kiro-rs image instead of compiling from source
FROM ghcr.io/hank9999/kiro-rs:beta-7d4d74 AS upstream
FROM alpine:3.21
RUN apk add --no-cache ca-certificates
WORKDIR /app
COPY --from=upstream /app/kiro-rs /app/kiro-rs
COPY entrypoint.sh /app/entrypoint.sh
RUN chmod +x /app/kiro-rs /app/entrypoint.sh
EXPOSE 7860
VOLUME ["/app/config"]
ENTRYPOINT ["/app/entrypoint.sh"]
|