Corran commited on
Commit
fa8e217
·
verified ·
1 Parent(s): 8d4ad78

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -1,7 +1,9 @@
1
  FROM python:3.9
2
 
3
  # Install dependencies
4
- RUN pip install fastapi uvicorn papermill pandas
 
 
5
 
6
  # Copy API code
7
  COPY main.py /app/main.py
 
1
  FROM python:3.9
2
 
3
  # Install dependencies
4
+ RUN pip install fastapi uvicorn papermill pandas ipython ipykernel
5
+
6
+ RUN ipython kernel install --name "python3"
7
 
8
  # Copy API code
9
  COPY main.py /app/main.py