CoolFace
Apppublic

ampls/Malware-Classifier

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
Dockerfile25 linesDownload Raw Back to root
1FROM python:3.10-slim2 3RUN apt-get update && apt-get install -y \4    git cmake build-essential \5    && rm -rf /var/lib/apt/lists/*6 7WORKDIR /app8 9COPY . .10 11RUN pip install --no-cache-dir \12    torch \13    numpy==1.23.5 \14    scikit-learn==1.1.3 \15    lightgbm==3.3.5 \16    "pandas==1.5.3" \17    lief==0.12.3 \18    "huggingface-hub==0.19.4" \19    "gradio==4.7.1" \20    "jinja2==3.1.2" \21    "starlette==0.27.0" \22    "uvicorn==0.22.0" \23    git+https://github.com/elastic/ember.git24 25CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]