CoolFace
Apppublic

ShazaAly/suplyd-intent-classification-marbert-api

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile24 linesDownload Raw Back to root
1# Use official lightweight Python image2FROM python:3.10-slim3 4# Set environment variables5ENV HF_HOME=/data6ENV PYTHONUNBUFFERED=17 8 9# Set working directory10WORKDIR /app11 12# Install dependencies13COPY requirements.txt .14RUN pip install --no-cache-dir -r requirements.txt15 16# Copy code17COPY . .18 19# Ensure run.sh is executable20RUN chmod +x run.sh21 22# Default command23CMD ["./run.sh"]24