12 lines
187 B
Docker
12 lines
187 B
Docker
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"] |