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"]