File size: 250 Bytes
ba54ca0 f0be8e1 ba54ca0 f0be8e1 ba54ca0 f0be8e1 ba54ca0 f0be8e1 ba54ca0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM python:3.10-slim
# Install dependencies
RUN pip install --no-cache-dir flask torch transformers
# Copy app code
WORKDIR /app
COPY app.py .
# Expose port (Hugging Face Spaces gunakan 7860)
EXPOSE 7860
# Jalankan Flask
CMD ["python", "app.py"] |