framework

This commit is contained in:
2026-03-15 12:25:51 -04:00
parent e07db4780f
commit fb14c7d804
4 changed files with 36 additions and 1 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:latest
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
ENTRYPOINT ["python", "certman.py"]
CMD ["--help"]