lollms-webui/Dockerfile

17 lines
495 B
Docker
Raw Normal View History

2023-04-06 19:12:49 +00:00
FROM python:3.10
WORKDIR /srv
COPY ./requirements.txt .
RUN python3 -m venv venv && . venv/bin/activate
RUN python3 -m pip install --no-cache-dir -r requirements.txt --upgrade pip
2023-04-06 19:12:49 +00:00
COPY ./app.py /srv/app.py
2023-05-14 08:23:28 +00:00
COPY ./gpt4all_api /srv/gpt4all_api
2023-04-24 20:09:40 +00:00
COPY ./backends /srv/backends
2023-04-06 19:12:49 +00:00
COPY ./static /srv/static
COPY ./templates /srv/templates
2023-04-07 16:02:01 +00:00
# COPY ./models /srv/models # Mounting model is more efficient
CMD ["python", "app.py", "--host", "0.0.0.0", "--port", "9600", "--db_path", "data/database.db"]