File size: 1,117 Bytes
c6be573
 
 
 
 
 
 
 
 
 
 
2631838
 
 
c6be573
2631838
c6be573
 
 
 
2631838
 
c6be573
2631838
 
c6be573
 
 
 
 
 
2631838
 
c6be573
 
 
 
 
 
 
 
 
 
 
2631838
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# The builder image, used to build the virtual environment
FROM python:3.11-slim-buster as builder

RUN apt-get update && apt-get install -y git

RUN pip install poetry==1.4.2

ENV POETRY_NO_INTERACTION=1 \
    POETRY_VIRTUALENVS_IN_PROJECT=1 \
    POETRY_VIRTUALENVS_CREATE=1 \
    POETRY_CACHE_DIR=/tmp/poetry_cache

WORKDIR /app

COPY pyproject.toml poetry.lock ./

RUN poetry install --without dev --no-root && rm -rf $POETRY_CACHE_DIR

# The runtime image, used to just run the code provided its virtual environment
FROM python:3.11-slim-buster as runtime

RUN useradd -m -u 1000 user

USER user

ENV HOME=/home/user \
    PATH="/home/user/.local/bin:$PATH" \
    VIRTUAL_ENV=/app/.venv \
    LISTEN_PORT=8000 \
    HOST=0.0.0.0

WORKDIR $HOME/app

COPY --from=builder --chown=user ${VIRTUAL_ENV} ${VIRTUAL_ENV}

COPY --chown=user ./app ./app
COPY --chown=user ./.chainlit ./.chainlit
COPY --chown=user chainlit.md ./

EXPOSE $LISTEN_PORT

# If chainlit is a Python package that needs to be installed, uncomment the following line:
RUN pip install -r app/requirements.txt

CMD ["chainlit", "run", "app/spark.py"]