R / Dockerfile
TruVlad's picture
Update Dockerfile
831792b verified
raw
history blame contribute delete
474 Bytes
# 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"]