Update Dockerfile
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
@@ -2,8 +2,12 @@
|
|
2 |
FROM jupyter/scipy-notebook:latest
|
3 |
USER root
|
4 |
RUN apt-get update && \
|
5 |
-
apt-get install -y rclone nmap tar zip unzip rar&& \
|
6 |
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
7 |
# Set the working directory in the container
|
8 |
WORKDIR /home/jovyan/work
|
9 |
|
|
|
2 |
FROM jupyter/scipy-notebook:latest
|
3 |
USER root
|
4 |
RUN apt-get update && \
|
5 |
+
apt-get install -y rclone nmap nodejs npm tar zip unzip pipx rar&& \
|
6 |
rm -rf /var/lib/apt/lists/*
|
7 |
+
RUN wget https://go.dev/dl/go1.22.4.linux-amd64.tar.gz
|
8 |
+
RUN rm -rf /usr/local/go && tar -C /usr/local -xzf go1.22.4.linux-amd64.tar.gz
|
9 |
+
RUN export PATH=$PATH:/usr/local/go/bin
|
10 |
+
|
11 |
# Set the working directory in the container
|
12 |
WORKDIR /home/jovyan/work
|
13 |
|