Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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
|