superkart-backend-api / Dockerfile
nittygritty2106's picture
Upload folder using huggingface_hub
045b2c5 verified
raw
history blame contribute delete
116 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 8000
CMD ["python", "app.py"]