Taiken_chatbot_API / Dockerfile
vumichien's picture
Add application file
0f8a857
raw
history blame
1.06 kB
FROM python:3.9-slim
WORKDIR /app
# Cài đặt các dependencies cần thiết
RUN apt-get update && apt-get install -y \
build-essential \
git \
&& rm -rf /var/lib/apt/lists/*
# Tạo các thư mục cần thiết và cấp quyền
RUN mkdir -p /tmp/matplotlib-cache /tmp/huggingface-cache && \
chmod 777 /tmp/matplotlib-cache /tmp/huggingface-cache
# Thiết lập biến môi trường cho Matplotlib và Hugging Face
ENV MPLCONFIGDIR=/tmp/matplotlib-cache
ENV TRANSFORMERS_CACHE=/tmp/huggingface-cache
ENV HF_HOME=/tmp/huggingface-cache
ENV HF_DATASETS_CACHE=/tmp/huggingface-cache
# Copy requirements first for better caching
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application
COPY . .
# Expose the port that the app will run on
EXPOSE 7860
# Set environment variables for Hugging Face Spaces
ENV PYTHONUNBUFFERED=1
ENV HOST=0.0.0.0
ENV PORT=7860
# Command to run the application
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]