Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -11,7 +11,7 @@ RUN useradd -m -d $HOME -s /bin/bash $USER && \
|
|
| 11 |
|
| 12 |
# Install dependencies and code-server
|
| 13 |
RUN apt-get update && \
|
| 14 |
-
apt-get install -y curl wget gpg apt-transport-https
|
| 15 |
curl -fsSL https://code-server.dev/install.sh | sh && \
|
| 16 |
apt-get clean && \
|
| 17 |
rm -rf /var/lib/apt/lists/*
|
|
|
|
| 11 |
|
| 12 |
# Install dependencies and code-server
|
| 13 |
RUN apt-get update && \
|
| 14 |
+
apt-get install -y curl wget gpg apt-transport-https git nodejs npm python3 python3-pip && \
|
| 15 |
curl -fsSL https://code-server.dev/install.sh | sh && \
|
| 16 |
apt-get clean && \
|
| 17 |
rm -rf /var/lib/apt/lists/*
|