# Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker # you will also find guides on how best to write your Dockerfile FROM nextcloud:stable #RUN useradd -m -u 1000 ollama #USER ollama #ENV PATH="/home/user/.local/bin:$PATH" WORKDIR /app #COPY --chown=user ./requirements.txt requirements.txt #RUN pip install --upgrade pip #RUN pip install --no-cache-dir --upgrade -r requirements.txt #COPY --chown=ollama . /app EXPOSE 7860 CMD ["python3", "-m flask"]