Add wget in Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -32,6 +32,7 @@ COPY backend/ .
|
|
32 |
# Install Node.js and npm
|
33 |
RUN apt-get update && apt-get install -y \
|
34 |
curl \
|
|
|
35 |
netcat-openbsd \
|
36 |
&& curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
|
37 |
&& apt-get install -y nodejs \
|
|
|
32 |
# Install Node.js and npm
|
33 |
RUN apt-get update && apt-get install -y \
|
34 |
curl \
|
35 |
+
wget \
|
36 |
netcat-openbsd \
|
37 |
&& curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
|
38 |
&& apt-get install -y nodejs \
|