eyalnof123 commited on
Commit
44e9949
·
verified ·
1 Parent(s): f6d52a4

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM nvidia/cuda:12.1.0-devel-ubuntu22.04
2
+
3
+ RUN apt-get update && apt-get install -y python3 python3-pip git && rm -rf /var/lib/apt/lists/*
4
+
5
+ WORKDIR /app
6
+ COPY train.py .
7
+
8
+ # Run training on startup
9
+ CMD ["python3", "train.py"]