mc_uploader_add

This commit is contained in:
kr rt 2025-01-11 14:49:41 +03:00
parent 35457beb65
commit 4edf41db4d
2 changed files with 9 additions and 1 deletions

View File

@ -7,8 +7,9 @@ COPY . /app
# Устанавливаем необходимые зависимости
RUN apt-get update
RUN apt-get upgrade
RUN apt-get upgrade -y
RUN ./scipts/mc_uploader-install.sh
RUN ./scipts/cppcheck-install.sh
RUN ./scipts/arm-none-edabi-install.sh
RUN ./scipts/doxygen-install.sh

7
scipts/mc_uploader-install.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
apt install git sudo -y
git clone http://192.168.0.120:43000/admin_dev/microcontroller_flash_uploader.git
cd ./microcontroller_flash_uploader
./Export_MC_UPLOADER.sh
cd ..