github.com/pojntfx/hydrapp/hydrapp@v0.0.0-20240516002902-d08759d6ca9f/pkg/builders/deb/Dockerfile (about)

     1  FROM debian:sid
     2  
     3  # Install native dependencies
     4  RUN apt update
     5  RUN DEBIAN_FRONTEND=noninteractive apt install -y dpkg-dev apt-utils ubuntu-keyring debian-ports-archive-keyring pbuilder qemu-user-static
     6  
     7  RUN git config --global --add safe.directory '*'
     8  
     9  COPY .pbuilderrc /root/.pbuilderrc
    10  COPY entrypoint.sh /entrypoint.sh
    11  
    12  WORKDIR /hydrapp/work
    13  
    14  CMD /entrypoint.sh