FROM ubuntu:24.04

# Set timezone, noninteractive mode, and pipx path
ENV TZ=Europe/Paris \
    DEBIAN_FRONTEND=noninteractive \
    PATH="/root/.local/bin:$PATH"

RUN echo '#!/bin/bash\n$@' > /usr/bin/sudo \
    && chmod +x /usr/bin/sudo

RUN apt-get update && apt-get install -y \
        unzip \
        curl \
        wget \
        python3 \
        pipx
