Trying to make installable package

This commit is contained in:
2023-05-19 18:51:01 +02:00
commit efc2d1c8f5
8 changed files with 172 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 -r requirements.txt
COPY . .