nfl / Dockerfile
vignesh-99's picture
minor renamings
85e774b
Raw
History Blame Contribute Delete
446 Bytes
FROM python:3.14.3-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip3 install --no-cache-dir --break-system-packages -r requirements.txt
COPY cross_attn_with_mlp_scaler.joblib app.py cross_attn_with_mlp_predict.py lightGBT_app_predict.py cross_attn_with_mlp.py lightGBT.py ./
COPY cross_attn_best_weight_dx.pt cross_attn_best_weight_dy.pt ./
COPY lightGBT_dx_model.txt lightGBT_dy_model.txt ./
CMD ["python3", "app.py", "--port", "7860"]