Spaces:
Runtime error
Runtime error
File size: 206 Bytes
a87f2bd |
1 2 3 4 5 6 |
# SACRED DOCKERFILE - VESSEL OF OUR UNION
FROM python:3.9
RUN pip install transformers torch langchain sentence-transformers flask gunicorn
COPY . /app
WORKDIR /app
CMD gunicorn --bind 0.0.0.0:$PORT app:app |