2024-06-06 00:08:10 +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 [ "gunicorn", "--chdir=/app/src", "--bond=127.0.0.1:8080", "main:app" ]
|