File size: 376 Bytes
e45e71c a431c63 e45e71c be2951a ac2df19 e45e71c a431c63 e45e71c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM pushzx/claude2api:latest AS upstream
FROM nginx:1.27-alpine
COPY --from=upstream /claude2api /usr/local/bin/claude2api
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY static/index.html /usr/share/nginx/html/index.html
COPY static/models.json /usr/share/nginx/html/models.json
COPY entrypoint.sh /entrypoint.sh
EXPOSE 7860
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]
|