some progress on classes
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-12-03 20:09:11 +01:00
parent e6569729bb
commit ed4fba74b9
7 changed files with 71 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM python:3.10
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY ./src .