openscholar-api / Dockerfile
SunbalAzizLCWU's picture
Upload folder using huggingface_hub
946c6ed verified
Raw
History Blame Contribute Delete
412 Bytes
# Use official Python image
FROM python:3.11
# Set the working directory
WORKDIR /code
# Copy requirements and install them
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# Copy the rest of the backend code
COPY . /code
# Hugging Face Spaces require apps to run on port 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]