File size: 474 Bytes
f1c81e4 fe67668 f1c81e4 fe67668 f1c81e4 fe67668 0b92dc4 fe67668 1c99a3f 831792b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# 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"] |