-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates base image, node, npm, and npm packages
Updates the base image, node version, npm version, and npm packages. Spago has been pinned to a specific version instead of `next`.
- Loading branch information
1 parent
8f14f71
commit 15466b3
Showing
3 changed files
with
7 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM debian:stable-20240423-slim | ||
FROM debian:stable-20240904-slim | ||
|
||
ENV LANG="C.UTF-8" LANGUAGE="C.UTF-8" LC_ALL="C.UTF-8" | ||
|
||
|
@@ -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 spago@next [email protected] purescript-psa@0.8.2 grunt-cli@1.4.3 esbuild@0.20.2 | ||
RUN npm install -g npm@10.8.3 | ||
RUN npm install -g spago@0.93.39 [email protected] purescript-psa@0.9.0 grunt-cli@1.5.0 esbuild@0.23.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters