File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed
Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ RUN apt-get update && bash -xe ./01*.sh && rm -rf * && rm -rf /var/lib/apt/lists
1616COPY scripts/02*.sh .
1717RUN apt-get update && bash -xe ./02*.sh && rm -rf * && rm -rf /var/lib/apt/lists/*
1818
19+ COPY scripts/03*.sh .
20+ RUN apt-get update && bash -xe ./03*.sh && rm -rf * && rm -rf /var/lib/apt/lists/*
21+
1922USER root
2023ENV HOME=/root
2124WORKDIR /github/workspace
Original file line number Diff line number Diff line change 11# join-ci
2+ [ ![ Status] ( https://github.com/joinframework/join-ci/actions/workflows/cd.yml/badge.svg?branch=main )] ( https://github.com/joinframework/join-ci/actions?query=workflow%3Acd+branch%3Amain )
3+ [ ![ GitHub Releases] ( https://img.shields.io/github/release/joinframework/join-ci.svg )] ( https://github.com/joinframework/join-ci/releases/latest )
24[ ![ GitHub License] ( https://img.shields.io/badge/license-MIT-blue.svg )] ( https://github.com/joinframework/join-ci/blob/main/LICENSE )
35
46Docker image for join framework continuous integration.
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ NODE_MAJOR=24
4+
5+ curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \
6+ | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
7+
8+ echo " deb [signed-by=/etc/apt/keyrings/nodesource.gpg] \
9+ https://deb.nodesource.com/node_${NODE_MAJOR} .x nodistro main" \
10+ > /etc/apt/sources.list.d/nodesource.list
11+
12+ apt-get update && apt-get -qq install nodejs
You can’t perform that action at this time.
0 commit comments