Some checks failed
Docker Builders / build-base-builder (push) Failing after 5s
17 lines
446 B
Docker
17 lines
446 B
Docker
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 |