Spaces:
Paused
Paused
| FROM python:3.9-slim | |
| # ์์คํ ํจํค์ง ์ค์น | |
| RUN apt-get update && apt-get install -y \ | |
| wget \ | |
| curl \ | |
| ca-certificates \ | |
| git \ | |
| && rm -rf /var/lib/apt/lists/* | |
| # ์์ ๋๋ ํ ๋ฆฌ ์ค์ | |
| WORKDIR /app | |
| # Python ํจํค์ง ์ค์น | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # ์ ํ๋ฆฌ์ผ์ด์ ํ์ผ ๋ณต์ฌ | |
| COPY . . | |
| # ํฌํธ ์ค์ | |
| EXPOSE 7860 | |
| # ์คํ ์คํฌ๋ฆฝํธ | |
| CMD ["python", "app.py"] | |