diff --git a/dockerfile b/dockerfile index 94459ea..76f2b70 100644 --- a/dockerfile +++ b/dockerfile @@ -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 diff --git a/scipts/mc_uploader-install.sh b/scipts/mc_uploader-install.sh new file mode 100755 index 0000000..c7614bf --- /dev/null +++ b/scipts/mc_uploader-install.sh @@ -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 ..