lollms-webui/Dockerfile

19 lines
523 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-24 15:34:12 +00:00
COPY ./api /srv/api
2023-04-06 19:12:49 +00:00
COPY ./static /srv/static
COPY ./templates /srv/templates
COPY ./web /srv/web
COPY ./configs /srv/configs
COPY ./assets /srv/assets
2023-04-06 19:12:49 +00:00
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"]