This commit is contained in:
kr rt 2024-07-20 00:15:17 +03:00
parent 946294774e
commit f4aeaf838f
5 changed files with 5 additions and 3 deletions

Binary file not shown.

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.docker_run.sh.swp

View File

@ -16,7 +16,8 @@ RUN apt-get -y install make #не последняя но нормально
RUN apt-get -y install stlink-tools #не последняя но нормально
RUN apt-get -y install graphviz #для doxygen
# Применение изменений PATH
RUN echo "source ~/.bashrc" >> ~/.profile
# Запускаем Bash, чтобы контейнер оставался активным
CMD ["bash", "-c", "while true; do sleep 1000; done"]

View File

@ -2,4 +2,4 @@ apt-get install -y wget tar bzip2
wget https://www.doxygen.nl/files/doxygen-1.11.0.linux.bin.tar.gz
tar -xvf ./doxygen-1.11.0.linux.bin.tar.gz
rm ./doxygen-1.11.0.linux.bin.tar.gz
echo "export PATH=$PATH:./doxygen-1.11.0/bin/" >> ~/.bashrc
echo "export PATH=\$PATH:./doxygen-1.11.0/bin/" >> ~/.bashrc

View File

@ -2,4 +2,4 @@ apt-get install -y wget tar bzip2
wget "https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.10/gcc-arm-none-eabi-10.3-2021.10-x86_64-linux.tar.bz2"
tar -jxf ./*.tar.bz2
rm ./*.tar.bz2
echo "export PATH=$PATH:./gcc-arm-none-eabi-10.3-2021.10/bin/" >> ~/.bashrc
echo "export PATH=\$PATH:./gcc-arm-none-eabi-10.3-2021.10/bin/" >> ~/.bashrc