Skip to content

Commit

Permalink
Updates base image, spago, npm, and node
Browse files Browse the repository at this point in the history
Updates the base image, spago, npm, and node versions
  • Loading branch information
onslaughtq committed Nov 8, 2024
1 parent d530b53 commit 03e1a4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stable-20240904-slim
FROM debian:stable-20241016-slim

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

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

ARG NODE_MAJOR=20
ARG NODE_MAJOR=22
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
RUN apt-get update && \
apt-get install -qq -y --no-install-recommends nodejs && \
apt-get clean

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

RUN npm install -g npm@10.5.2
RUN npm install -g [email protected].29 [email protected] [email protected] [email protected] esbuild@0.23.1 [email protected]
RUN npm install -g npm@10.9.0
RUN npm install -g [email protected].41 [email protected] [email protected] [email protected] esbuild@0.24.0 [email protected]

0 comments on commit 03e1a4e

Please sign in to comment.