medical-chatbot / Dockerfile
tta1301's picture
Update Dockerfile
bb7f0c2 verified
raw
history blame
437 Bytes
FROM python:3.10-slim
# Khai báo biến môi trường cache
ENV TRANSFORMERS_CACHE=/tmp/cache
# Tạo thư mục cache và gán toàn quyền (777)
RUN mkdir -p /tmp/cache && chmod -R 777 /tmp/cache
# Tạo thư mục cho code
WORKDIR /code
# Copy mã nguồn vào image
COPY . .
# Cài đặt thư viện
RUN pip install --no-cache-dir -r requirements.txt
# EXPOSE nếu cần
EXPOSE 7860
# Chạy app
CMD ["python", "app.py"]