Create Access clas, add platform db models with peewee pwiz, fix JSONfield MySQL

This commit is contained in:
2022-09-20 20:54:32 +09:00
parent dad22dad06
commit 492745e374
6 changed files with 3251 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:3.10-alpine
LABEL maintainer="s.zhukovskii@ispsystem.com"
LABEL ru.isptech.git.SupportAccess.version=v0.0.1
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./main.py" ]