Skip to content

Commit

Permalink
Added Path variable to Dockerfile
Browse files Browse the repository at this point in the history
Added the Path variable to the Dockerfile. Thisway the arm-none-eabi-gcc can be called without the user knowing the PATH.
  • Loading branch information
jdohm authored and nickray committed Jan 4, 2021
1 parent 8b91ec7 commit c924da3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ RUN set -eux; \
echo "b50b02b0a16e5aad8620e9d7c31110ef285c1dde28980b1a9448b764d77d8f92 gcc.tar.bz2" | sha256sum -c -; \
tar -C /opt -xf gcc.tar.bz2; \
rm gcc.tar.bz2;
# Set Path for ARM compiler
ENV PATH="$PATH:/opt/gcc-arm-none-eabi-8-2019-q3-update/bin"

# Python3.7: for solo-python (merging etc.)
RUN set -eux; \
Expand All @@ -35,4 +37,4 @@ RUN set -eux; \
pip install -U pip

# solo-python (Python3.7 script for merging etc.)
RUN pip install -U solo-python
RUN pip install -U solo-python

0 comments on commit c924da3

Please sign in to comment.