mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-18 20:17:50 +00:00
17 lines
485 B
Docker
17 lines
485 B
Docker
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
|
|
|
|
COPY ./app.py /srv/app.py
|
|
COPY ./db.py /srv/db.py
|
|
COPY ./config.py /srv/config.py
|
|
COPY ./static /srv/static
|
|
COPY ./templates /srv/templates
|
|
|
|
# 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"]
|