openfree commited on
Commit
bf7c5d7
·
verified ·
1 Parent(s): 54c3f0f

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -19
Dockerfile DELETED
@@ -1,19 +0,0 @@
1
- FROM python:3.10-slim
2
-
3
- WORKDIR /app
4
-
5
- # ffmpeg 설치 (음성 파일 처리용)
6
- RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
7
-
8
- # requirements.txt 복사 및 설치
9
- COPY requirements.txt .
10
- RUN pip install --no-cache-dir -r requirements.txt
11
-
12
- # 앱 파일 복사
13
- COPY app.py .
14
-
15
- # 포트 설정
16
- EXPOSE 7860
17
-
18
- # 실행
19
- CMD ["python", "app.py"]