whatsthispdf07 / Dockerfile
mitulagr2's picture
Update Dockerfile
369dfa8
raw
history blame
607 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 root
#
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"]