understanding commited on
Commit
19c6662
·
verified ·
1 Parent(s): ad3acea

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM hrishi2861/terabox:heroku
2
+ WORKDIR /app
3
+ COPY requirements.txt .
4
+ RUN uv venv
5
+ RUN uv pip install --no-cache-dir -r requirements.txt
6
+ COPY . .
7
+ CMD ["bash", "start.sh"]