Files

6 lines
160 B
Docker
Raw Permalink Normal View History

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENTRYPOINT ["python", "SkinDetection.py"]