1FROM tecktron/python-waitress:slim
2
3RUN pip install --upgrade pip
4
5WORKDIR /app
6COPY ./requirements.txt .
7RUN pip install -r requirements.txt
8
9COPY ./migrations ./migrations
10COPY ./myprecious ./myprecious
11
12ENV APP_MODULE=myprecious:app