Spaces:
Runtime error
Runtime error
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"] | |