Files
ai-pull-request/Dockerfile
T
2026-06-26 03:03:38 +00:00

10 lines
193 B
Docker

FROM alpine:latest
# 安裝必要的工具
RUN apk add --no-cache --no-check-certificate bash
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]