File size: 297 Bytes
e69bfbd 84c69b4 e69bfbd 1001224 e69bfbd 84c69b4 aa3f987 |
1 2 3 4 5 6 7 8 9 10 11 |
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt ./requirements.txt
RUN apt-get update \
&& apt-get -y install libpq-dev gcc \
&& apt-get -y install ffmpeg \
&& pip install psycopg2
# Install dependencies
RUN pip install -r requirements.txt
COPY . /app
CMD ["python", "main.py"] |