AlexVplle's picture
Upload Dockerfile with huggingface_hub
b51c55c verified
raw
history blame contribute delete
133 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]