Initial commit
Some checks failed
Docker Builders / build-base-builder (push) Failing after 5s

This commit is contained in:
2026-01-23 16:05:57 +01:00
commit cbd0ba7d88
7 changed files with 206 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
FROM ubuntu:24.04
ENV TZ=Europe/Paris
ENV DEBIAN_FRONTEND=noninteractive
ENV PATH="/root/.local/bin:$PATH"
RUN --mount=type=cache,target=/ccache
# Make sudo dummy replacement, so we don't weaken docker security
RUN echo "#!/bin/bash\n\$@" > /usr/bin/sudo
RUN chmod +x /usr/bin/sudo
RUN apt-get update -y
RUN apt-get install -y
RUN apt-get install unzip curl wget lsb-release software-properties-common gnupg -y
RUN apt-get install python3 -y