oppo-node / Dockerfile
DJ-Goanna-Coding's picture
Upload Dockerfile with huggingface_hub
a444d20 verified
Raw
History Blame Contribute Delete
139 Bytes
FROM python:3.9
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]