-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmake: update docker cmake to 3.26.0
- Loading branch information
1 parent
9792211
commit 44b5eb3
Showing
1 changed file
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -230,19 +230,26 @@ RUN mkdir wamrc && \ | |
FROM ubuntu:20.04 | ||
LABEL maintainer="[email protected]" | ||
|
||
RUN apt-get update -qq && DEBIAN_FRONTEND="noninteractive" apt-get install -y -qq \ | ||
build-essential \ | ||
curl \ | ||
gcc \ | ||
libssl-dev | ||
|
||
RUN mkdir -p cmake && \ | ||
curl -s -L wget https://cmake.org/files/v3.26/cmake-3.26.0.tar.gz \ | ||
| tar -C cmake --strip-components=1 -xz && \ | ||
cd cmake && ./bootstrap && make && make install && rm -rf cmake | ||
|
||
RUN dpkg --add-architecture i386 | ||
# This is used for the final images so make sure to not store apt cache | ||
# Note: xtensa-esp32-elf-gdb is linked to libpython2.7 | ||
RUN apt-get update -qq && DEBIAN_FRONTEND="noninteractive" apt-get install -y -qq --no-install-recommends \ | ||
-o APT::Immediate-Configure=0 \ | ||
avr-libc \ | ||
build-essential \ | ||
ccache \ | ||
clang \ | ||
clang-tidy \ | ||
cmake \ | ||
curl \ | ||
gcc \ | ||
gcc-avr \ | ||
gcc-multilib \ | ||
genromfs \ | ||
|