severo HF staff commited on
Commit
29b226f
·
1 Parent(s): 109dd1e

install curl

Browse files
Files changed (1) hide show
  1. 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 \