Oops I forgot to install cmake and ninja.
Этот коммит содержится в:
Nia Waldvogel 2021-11-11 14:09:11 -05:00 коммит произвёл Ron Evans
родитель 641dcd7c16
коммит 539e1324c8
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -29,7 +29,8 @@ COPY --from=tinygo-base /tinygo/targets /tinygo/targets
RUN cd /tinygo/ && \
apt-get update && \
apt-get install -y make clang-11 libllvm11 lld-11 && \
apt-get install -y make clang-11 libllvm11 lld-11 cmake ninja-build && \
mkdir build && \
make wasi-libc binaryen
# tinygo-avr stage installs the needed dependencies to compile TinyGo programs for AVR microcontrollers.