tg-newsmaker/Dockerfile

13 lines
192 B
Docker
Raw Normal View History

2024-07-10 14:56:40 +03:00
FROM python:3.10
RUN apt-get install libpq-dev -y
ADD requirements.txt requirements.txt
RUN pip install -r requirements.txt
ADD src /app
WORKDIR /app
ENTRYPOINT [ "python", "./main.py" ]