adAstra144/sqlite-test
0
1FROM python:3.102 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install -r requirements.txt7 8COPY . .9 10# Set Hugging Face cache directory to a writable location11ENV TRANSFORMERS_CACHE=/tmp/hf_cache12ENV HF_HOME=/tmp/hf_cache13 14CMD ["python", "app.py"]