Spaces:
Sleeping
Sleeping
Darwin Agent
fix: resolve CONFIG_ERROR - remove invalid sdk_version and static dir references
3e4e144 | FROM python:3.12-slim | |
| WORKDIR /app | |
| # ์์กด์ฑ ์ค์น | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # ์ ํ๋ฆฌ์ผ์ด์ ๋ณต์ฌ | |
| COPY app.py . | |
| COPY index.html . | |
| # ํฌํธ ๋ ธ์ถ | |
| EXPOSE 7860 | |
| # ์ ํ๋ฆฌ์ผ์ด์ ์คํ | |
| CMD ["python", "app.py"] | |