understanding commited on
Commit
0c34896
·
verified ·
1 Parent(s): 4d50e4d

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -18
Dockerfile DELETED
@@ -1,18 +0,0 @@
1
- FROM python:3.11-slim
2
-
3
- ENV PYTHONDONTWRITEBYTECODE=1
4
- ENV PYTHONUNBUFFERED=1
5
-
6
- WORKDIR /code
7
-
8
- RUN apt-get update && apt-get install -y --no-install-recommends \
9
- ffmpeg \
10
- && rm -rf /var/lib/apt/lists/*
11
-
12
- COPY requirements.txt /code/requirements.txt
13
- RUN pip install --no-cache-dir -r /code/requirements.txt
14
-
15
- COPY . /code
16
-
17
- EXPOSE 7860
18
- CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]