Spaces:
Build error
Build error
install curl
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -3,6 +3,10 @@
|
|
3 |
FROM ubuntu:22.04
|
4 |
|
5 |
# Install Node.js 22 - https://github.com/nodesource/distributions?tab=readme-ov-file#installation-instructions-deb
|
|
|
|
|
|
|
|
|
6 |
RUN curl -fsSL https://deb.nodesource.com/setup_22.x -o nodesource_setup.sh \
|
7 |
&& bash nodesource_setup.sh \
|
8 |
&& apt update \
|
|
|
3 |
FROM ubuntu:22.04
|
4 |
|
5 |
# Install Node.js 22 - https://github.com/nodesource/distributions?tab=readme-ov-file#installation-instructions-deb
|
6 |
+
RUN apt update \
|
7 |
+
&& apt install -y curl \
|
8 |
+
&& rm -rf /var/lib/apt/lists/*
|
9 |
+
|
10 |
RUN curl -fsSL https://deb.nodesource.com/setup_22.x -o nodesource_setup.sh \
|
11 |
&& bash nodesource_setup.sh \
|
12 |
&& apt update \
|