SuperKartBackEnd / Dockerfile
sastrysagi's picture
Upload folder using huggingface_hub
25dbcef verified
raw
history blame contribute delete
108 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "app.py"]