whatsthispdf08 / Dockerfile
mitulagr2's picture
Update Dockerfile
f371d4d
raw
history blame
643 Bytes
#
FROM python:3.11
#
WORKDIR /code
#
COPY ./requirements.txt /code/requirements.txt
#
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
#
COPY ./start_service.sh /code/start_service.sh
#
COPY ./app /code/app
#
# RUN apt-get update && apt-get install -y sudo
RUN useradd -m docker && echo "docker:docker" | chpasswd && adduser docker sudo
RUN curl -fsSL https://ollama.com/install.sh | sh
USER docker
RUN nohup ollama serve & sleep 5
#
# RUN chmod +x /code/start_service.sh
#
EXPOSE 7860
# # Run .sh file
ENTRYPOINT ["sh", "/code/start_service.sh"]
#
# CMD ["fastapi", "run", "app/main.py", "--port", "80"]