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"]