File size: 222 Bytes
f25b2b3 |
1 2 3 4 5 6 7 |
FROM 3.8.17-alpine3.18
# copy the requirements.txt file first to avoid cache invalidations
COPY requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
COPY . /app
CMD ["chainlit", "app.py"] |