krisha06 commited on
Commit
18054c4
·
verified ·
1 Parent(s): 85154ca

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10
2
+
3
+ # Set working directory
4
+ WORKDIR /app
5
+
6
+ # Copy files
7
+ COPY . .
8
+
9
+ # Install dependencies
10
+ RUN pip install -r requirements.txt
11
+
12
+ # Run fine-tuning when the Space starts
13
+ CMD ["python", "finetune.py"]