vignesh-99/nfl
0
1FROM python:3.14.3-slim2 3WORKDIR /app4 5COPY requirements.txt ./6 7RUN pip3 install --no-cache-dir --break-system-packages -r requirements.txt8 9 10COPY 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 ./11COPY cross_attn_best_weight_dx.pt cross_attn_best_weight_dy.pt ./12COPY lightGBT_dx_model.txt lightGBT_dy_model.txt ./13 14CMD ["python3", "app.py", "--port", "7860"]15 