FROM debian:unstable-slim # Set environment variables ENV DEBIAN_FRONTEND=noninteractive ENV LANG=C.UTF-8 ENV LC_ALL=C.UTF-8 # Install basic build tools RUN apt update && \ apt install -y \ build-essential \ devscripts \ debhelper \ pkg-config \ git \ curl \ wget \ && \ apt clean && \ rm -rf /var/lib/apt/lists/* # Set working directory WORKDIR /workspace # Default command CMD ["bash"]