Compare commits
No commits in common. "30accc0e297349b0f923c6d120b5e4e8bb1e976a" and "64ff7bf2e6efc1a65e9aa9c142546ceb99f6d5c4" have entirely different histories.
30accc0e29
...
64ff7bf2e6
2 changed files with 3 additions and 8 deletions
|
@ -10,5 +10,4 @@ https://git.martin-riedl.de/ci/-/packages/container/ubuntu/24.04
|
|||
- curl
|
||||
- docker-ce-cli
|
||||
- docker-buildx-plugin
|
||||
- git
|
||||
- nodejs 22
|
||||
|
|
|
@ -2,13 +2,9 @@ FROM ubuntu:24.04
|
|||
|
||||
RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# install basis tools
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends curl ca-certificates git && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# install nodejs
|
||||
RUN curl -fsSL https://deb.nodesource.com/setup_22.x -o nodesource_setup.sh && \
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends curl ca-certificates && \
|
||||
curl -fsSL https://deb.nodesource.com/setup_22.x -o nodesource_setup.sh && \
|
||||
bash nodesource_setup.sh && \
|
||||
apt-get install -y --no-install-recommends nodejs && \
|
||||
rm -rf /var/lib/apt/lists/* && \
|
||||
|
@ -25,4 +21,4 @@ RUN install -m 0755 -d /etc/apt/keyrings && \
|
|||
tee /etc/apt/sources.list.d/docker.list > /dev/null && \
|
||||
apt-get update && apt-get install -y --no-install-recommends docker-ce-cli docker-buildx-plugin && \
|
||||
rm -rf /var/lib/apt/lists/* && \
|
||||
docker -v
|
||||
docker -v \
|
||||
|
|
Loading…
Add table
Reference in a new issue