Skip to content

Commit 03e1a4e

Browse files
committed
Updates base image, spago, npm, and node
Updates the base image, spago, npm, and node versions
1 parent d530b53 commit 03e1a4e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:stable-20240904-slim
1+
FROM debian:stable-20241016-slim
22

33
ENV LANG="C.UTF-8" LANGUAGE="C.UTF-8" LC_ALL="C.UTF-8"
44

@@ -11,13 +11,13 @@ RUN apt-get update && \
1111
RUN mkdir -p /etc/apt/keyrings
1212
RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
1313

14-
ARG NODE_MAJOR=20
14+
ARG NODE_MAJOR=22
1515
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
1616
RUN apt-get update && \
1717
apt-get install -qq -y --no-install-recommends nodejs && \
1818
apt-get clean
1919

2020
RUN mkdir -p ~/.ssh/ && ssh-keyscan -t ed25519 github.com >> ~/.ssh/known_hosts
2121

22-
RUN npm install -g npm@10.5.2
23-
22+
RUN npm install -g npm@10.9.0
23+

0 commit comments

Comments
 (0)