ChatNBA / Dockerfile
doctorbetaq's picture
Update Dockerfile
0440aaa
# 使用一个官方的 Python 运行时作为父镜像
FROM python:3.11.0b4
# 將工作目錄設定為/code
WORKDIR /code
# 將你的requirements.txt複製到映像檔中的/code目錄
COPY ./requirements.txt /code/requirements.txt
# 在映像檔中安裝requirements.txt中指定的依賴項
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# 設定環境變數 TRANSFORMERS_CACHE 和 SENTENCE_TRANSFORMERS_HOME
ENV TRANSFORMERS_CACHE=/tmp/transformers_cache
ENV SENTENCE_TRANSFORMERS_HOME=/tmp/sentence_transformers
# 將你的應用程式複製到映像檔中的/code目錄
COPY . .
CMD ["python", "app.py"] # 啟動你的Flask應用程式