14 lines
183 B
Docker
14 lines
183 B
Docker
|
FROM python:3.12.3
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY requirements.txt .
|
||
|
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
COPY chatbot/ chatbot/
|
||
|
|
||
|
WORKDIR /app/chatbot
|
||
|
|
||
|
CMD ["python", "main.py"]
|