File size: 262 Bytes
e45e71c a431c63 e45e71c a431c63 e45e71c | 1 2 3 4 5 6 7 8 9 10 11 12 | 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 entrypoint.sh /entrypoint.sh
EXPOSE 7860
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]
|