You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 483 B

4 years ago
4 years ago
4 years ago
4 years ago
12345678910111213141516171819202122232425
  1. FROM amd64/ubuntu:groovy
  2. RUN apt update
  3. RUN apt install -y --no-install-recommends \
  4. git \
  5. wget \
  6. python \
  7. python3 \
  8. python3-pip \
  9. ubuntu-keyring \
  10. qemu-user-static \
  11. binfmt-support \
  12. debootstrap \
  13. coreutils \
  14. parted \
  15. gdisk \
  16. bzip2 \
  17. kpartx \
  18. lbzip2 \
  19. sudo \
  20. e2fsprogs
  21. RUN python3 -m pip install ansible
  22. ENTRYPOINT ["bash", "target/build.sh"]