diff --git a/Dockerfile b/Dockerfile index 7083ad5..98dafd4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,20 +2,21 @@ FROM ubuntu:22.04 ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y --no-install-recommends \ - file \ - git \ build-essential \ - python3 \ + ca-certificates \ + file \ gawk \ - unzip \ - libncurses5-dev \ - zlib1g-dev \ - libssl-dev \ + git \ libelf-dev \ - wget \ + libncurses5-dev \ + libssl-dev \ + python3 \ + qemu-utils \ rsync \ time \ - qemu-utils \ + unzip \ + wget \ + zlib1g-dev \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* RUN git config --global init.defaultBranch main