lollms-webui/Dockerfile

19 lines
629 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-04-15 12:20:32 +00:00
COPY ./pyGpt4All/api.py /srv/pyGpt4All/api.py
COPY ./pyGpt4All/db.py /srv/pyGpt4All/db.py
COPY ./pyGpt4All/config.py /srv/pyGpt4All/config.py
COPY ./pyGpt4All/extension.py /srv/pyGpt4All/extension.py
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"]