Greatly cleaned up the python script and added a dockerfile

This commit is contained in:
Gregory Campbell
2026-06-19 11:17:14 -04:00
parent 0c09377e1b
commit a8a50fc89b
2 changed files with 130 additions and 96 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENTRYPOINT ["python", "SkinDetection.py"]