Compare commits

..

No commits in common. "30accc0e297349b0f923c6d120b5e4e8bb1e976a" and "64ff7bf2e6efc1a65e9aa9c142546ceb99f6d5c4" have entirely different histories.

2 changed files with 3 additions and 8 deletions

View file

@ -10,5 +10,4 @@ https://git.martin-riedl.de/ci/-/packages/container/ubuntu/24.04
- curl - curl
- docker-ce-cli - docker-ce-cli
- docker-buildx-plugin - docker-buildx-plugin
- git
- nodejs 22 - nodejs 22

View file

@ -2,13 +2,9 @@ FROM ubuntu:24.04
RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/* 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 # 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 && \ bash nodesource_setup.sh && \
apt-get install -y --no-install-recommends nodejs && \ apt-get install -y --no-install-recommends nodejs && \
rm -rf /var/lib/apt/lists/* && \ 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 && \ 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 && \ apt-get update && apt-get install -y --no-install-recommends docker-ce-cli docker-buildx-plugin && \
rm -rf /var/lib/apt/lists/* && \ rm -rf /var/lib/apt/lists/* && \
docker -v docker -v \