V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX 提问指南
xiaohantx
V2EX  ›  问与答

Apache Answer 这个插件怎么安装呀。。。

  •  
  •   xiaohantx · 7 天前 · 229 次点击

    看了下文档要用 dockerFile

    FROM apache/answer as answer-builder
    
    RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
    
    RUN apk --no-cache add \
        build-base git bash nodejs npm go && \
        npm install -g pnpm
    
    RUN go env -w GOPROXY=https://goproxy.cn,direct
    
    RUN answer build \
        --with github.com/apache/incubator-answer-plugins/connector-dingtalk \
        --output /usr/bin/new_answer
    
    FROM alpine
    
    ARG TIMEZONE
    ENV TIMEZONE=${TIMEZONE:-"Asia/Shanghai"}
    
    RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
    
    RUN apk update \
        && apk --no-cache add \
            bash \
            ca-certificates \
            curl \
            dumb-init \
            gettext \
            openssh \
            sqlite \
            gnupg \
            tzdata \
        && ln -sf /usr/share/zoneinfo/${TIMEZONE} /etc/localtime \
        && echo "${TIMEZONE}" > /etc/timezone
    
    COPY --from=answer-builder /usr/bin/new_answer /usr/bin/answer
    COPY --from=answer-builder /data /data
    COPY --from=answer-builder /entrypoint.sh /entrypoint.sh
    RUN chmod 755 /entrypoint.sh
    
    VOLUME /data
    EXPOSE 80
    ENTRYPOINT ["/entrypoint.sh"]
    
    目前尚无回复
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   3061 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 21ms · UTC 00:43 · PVG 08:43 · LAX 16:43 · JFK 19:43
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.