FROM rockchin/free-one-api:latest WORKDIR /app # 创建 data 目录并设置权限 RUN mkdir -p /app/data && chmod 777 /app/data EXPOSE 3000 CMD ["python", "main.py"]