flan-fine-docker / Dockerfile
memorease's picture
Update Dockerfile
b6ca66f verified
raw
history blame contribute delete
265 Bytes
FROM python:3.10-slim
RUN apt-get update && apt-get install -y git
WORKDIR /app
COPY . .
# Gerekli Python paketlerini kur
RUN pip install --no-cache-dir torch transformers flask sentencepiece protobuf
ENV TRANSFORMERS_CACHE=/app/cache
CMD ["python", "app.py"]