CoolFace
Apppublic

DJ-Goanna-Coding/oppo-node

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
Dockerfile7 linesDownload Raw Back to root
1FROM python:3.92WORKDIR /code3COPY requirements.txt .4RUN pip install --no-cache-dir -r requirements.txt5COPY . .6CMD ["python", "app.py"]7