Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -1,6 +1,8 @@
|
|
| 1 |
# Use a base image with Python and Jupyter Notebook installed
|
| 2 |
FROM jupyter/scipy-notebook:latest
|
| 3 |
-
|
|
|
|
|
|
|
| 4 |
# Set the working directory in the container
|
| 5 |
WORKDIR /home/jovyan/work
|
| 6 |
|
|
|
|
| 1 |
# Use a base image with Python and Jupyter Notebook installed
|
| 2 |
FROM jupyter/scipy-notebook:latest
|
| 3 |
+
RUN apt-get update && apt-get install -y \
|
| 4 |
+
rclone \
|
| 5 |
+
nmap
|
| 6 |
# Set the working directory in the container
|
| 7 |
WORKDIR /home/jovyan/work
|
| 8 |
|