mchatbot / Dockerfile
mobinmazahery85's picture
Create Dockerfile
611abba verified
raw
history blame contribute delete
250 Bytes
FROM python:3.10
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN python3 -m pip install --no-cache-dir --upgrade pip
RUN python3 -m pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["python", "chat.py"]