whatsthispdf08 / Dockerfile
mitulagr2's picture
Update Dockerfile
0d1cc7d
raw
history blame
463 Bytes
#
FROM python:3.11
#
WORKDIR /code
#
COPY ./requirements.txt /code/requirements.txt
#
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
#
USER root
#
COPY ./start_service.sh /code/start_service.sh
#
COPY ./app /code/app
#
RUN apt-get update && apt-get install -y sudo
#
# EXPOSE 11434
#
RUN chmod +x /code/start_service.sh
# # Run .sh file
CMD ["/code/start_service.sh"]
#
# CMD ["fastapi", "run", "app/main.py", "--port", "80"]