progress on license server

This commit is contained in:
2025-10-18 16:00:07 -04:00
parent 144123f40e
commit 05c89e5c61
6 changed files with 551 additions and 1 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3
WORKDIR /src
COPY requirements.txt ./
COPY .env ./
RUN pip install --no-cache-dir -r requirements.txt
COPY src /src