13 lines
306 B
Docker
13 lines
306 B
Docker
FROM python:3.10.12-slim
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential \
|
|
ffmpeg \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
# Create app directory
|
|
WORKDIR /app
|
|
COPY api_concurrent.py requirements.txt ./
|
|
RUN pip install -r requirements.txt
|
|
EXPOSE 5000
|
|
CMD [ "python", "./api_concurrent.py" ]
|
|
|