Chat_QnA_v2 / Dockerfile
binh99's picture
update new
d037cdf
raw
history blame
159 Bytes
FROM python:3.10
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "app.py" ]