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