Spaces:
Paused
Paused
File size: 290 Bytes
6aaf6eb 276ce01 9c38ab1 6aaf6eb 9c38ab1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
FROM pengzhile/new-api AS builder
FROM alpine:3.12
COPY --from=builder /one-api /one-api
RUN apk add --no-cache nginx && \
mkdir -p /data && chmod 777 /data
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 7860
COPY start.sh /start.sh
RUN chmod +x /start.sh
CMD ["/start.sh"]
|