FROM ubuntu:latest RUN apt-get update -y RUN apt-get install -y python-pip python-dev build-essential COPY . /app WORKDIR /app RUN pip install psycopg2-binary RUN pip install -r requirements.txt ENTRYPOINT ["python"] CMD ["app.py"]