This commit is contained in:
Rhys
2025-02-03 10:40:55 -05:00
commit 4f09607579
4 changed files with 122 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.11.8
RUN apt-get update && \
apt-get install -y libgl1-mesa-glx
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD [ "python", "Count.py"]