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

Dockerfile 809 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. FROM ubuntu:22.04
  2. ADD toolchain_goke_armv6.tar.gz /opt/
  3. RUN apt update && \
  4. apt install -y \
  5. build-essential \
  6. make \
  7. cmake \
  8. autoconf \
  9. automake \
  10. libtool \
  11. curl \
  12. python3 \
  13. pkg-config \
  14. ncurses-dev \
  15. texinfo \
  16. upx \
  17. git
  18. RUN dpkg --add-architecture i386
  19. RUN apt update && \
  20. apt install -y \
  21. libc6:i386 \
  22. libncurses5:i386 \
  23. libstdc++6:i386 \
  24. zlib1g:i386
  25. RUN curl https://bootstrap.pypa.io/get-pip.py -o /tmp/get-pip.py && \
  26. python3 /tmp/get-pip.py && \
  27. pip3 install conan==1.60.1
  28. RUN conan remote add conan_server http://conan.elear.solutions && \
  29. conan profile new --detect default
  30. COPY ./profiles/ /root/.conan/profiles/
  31. ENV COCO_BIT_ALIGNMENT 14
  32. ENV CONAN_DEFAULT_PROFILE_PATH /root/.conan/profiles/goke_armv6