13 lines
No EOL
568 B
Docker
13 lines
No EOL
568 B
Docker
FROM mcr.microsoft.com/devcontainers/base:ubuntu
|
|
# Install the xz-utils package
|
|
RUN apt-get update && apt-get upgrade && apt install -y ca-certificates curl gnupg
|
|
|
|
|
|
RUN mkdir -p /etc/apt/keyrings
|
|
RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
|
|
|
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_22.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list
|
|
|
|
RUN sudo apt update && apt install nodejs -y
|
|
|
|
RUN npm install --global likec4 |