tele_bot / Dockerfile
ilhamap's picture
Update Dockerfile
1001224 verified
raw
history blame contribute delete
297 Bytes
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"]