xdragxt commited on
Commit
fcf88e7
·
verified ·
1 Parent(s): 10d17d3

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.12-slim
2
+
3
+ WORKDIR /app
4
+
5
+ COPY . /app
6
+
7
+ RUN pip install --no-cache-dir --upgrade pip \
8
+ && pip install --no-cache-dir -r requirements.txt
9
+
10
+ CMD ["python", "jarvis.py"]