CoolFace
Apppublic

TypeGPT/bbox

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile10 linesDownload Raw Back to root
1FROM python:3.9-slim2 3WORKDIR /code4 5COPY ./requirements.txt /code/requirements.txt6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . /code/9 10CMD ["python", "app.py"]