minimal requirements, one schema, readme update

This commit is contained in:
2021-06-30 14:46:19 +03:00
parent 4f2f4187fe
commit 378f4b61b1
18 changed files with 389 additions and 456 deletions

View File

@@ -1,9 +1,12 @@
FROM python:3.9
WORKDIR /home/ruicore/auth
RUN pip3 install pipenv
COPY . /home/ruicore/auth
WORKDIR /usr/src/app
RUN pip3 install --upgrade pip && pip3 install -r requirements.txt
COPY Pipfile ./
COPY Pipfile.lock ./
LABEL ruicore="hrui835@gmail.com" version="v.0.0.1"
RUN set -ex && pipenv install --deploy --system
COPY . .