2api / Dockerfile
ohmyapi's picture
feat: add automatic token cleanup with crond + fixed /tmp/crontabs for HF read-only fs
9727ff0 verified
raw
history blame
559 Bytes
FROM eceasy/cli-proxy-api:latest
USER root
RUN apk add --no-cache bash libc6-compat gcompat jq
WORKDIR /app
RUN cp /CLIProxyAPI/CLIProxyAPI ./cli-proxy-api && chmod +x ./cli-proxy-api
RUN mkdir -p /tmp/.cli-proxy-api /tmp/logs /tmp/pg_cache/pgstore && chmod -R 777 /tmp
COPY config.yaml /app/config.yaml
COPY cleanup_tokens.sh /app/cleanup_tokens.sh
COPY entrypoint.sh /app/entrypoint.sh
RUN cp /app/config.yaml /app/config.example.yaml
RUN chmod +x /app/cleanup_tokens.sh /app/entrypoint.sh
ENV TZ=Asia/Shanghai
EXPOSE 7860
CMD ["/app/entrypoint.sh"]