medibot-llama2 / Dockerfile
Prashant Kumar
moved docker entry file to start.sh
74a29f8
raw
history blame
No virus
172 Bytes
FROM python:3.9
WORKDIR /app
COPY ./requirements.txt /app/
RUN pip install -r requirements.txt
COPY . /app/
# CMD ["python", "ingest.py"]
ENTRYPOINT ["sh", "start.sh"]