13 lines
232 B
Docker
13 lines
232 B
Docker
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", "--bind=0.0.0.0:8080", "main:app" ] |