Akwbw commited on
Commit
9b3ac2a
·
verified ·
1 Parent(s): 4b4f125

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -25
Dockerfile DELETED
@@ -1,25 +0,0 @@
1
- FROM python:3.10
2
-
3
- # Prevent Python from writing .pyc files
4
- ENV PYTHONDONTWRITEBYTECODE 1
5
- ENV PYTHONUNBUFFERED 1
6
-
7
- # Work directory
8
- WORKDIR /app
9
-
10
- # Install system dependencies
11
- RUN apt-get update && apt-get install -y \
12
- ffmpeg \
13
- && rm -rf /var/lib/apt/lists/*
14
-
15
- # Copy files
16
- COPY requirements.txt .
17
- RUN pip install --no-cache-dir -r requirements.txt
18
-
19
- COPY . .
20
-
21
- # Expose port
22
- EXPOSE 7860
23
-
24
- # Start server
25
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]