c2api / Dockerfile
ohmyapi's picture
Redirect Space root to admin login and refresh README
52dad07 verified
raw
history blame contribute delete
262 Bytes
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"]