Skip to content

Commit 9b352f4

Browse files
authored
fix docker build warnings in dockerfile-nogit (#2518)
1 parent 51c4450 commit 9b352f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dockerfile-nogit

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:noble
33
# Set location to download ARM toolkit from.
44
# This will need to be changed over time or replaced with a static link to the latest release.
55
ENV ARMBINURL=https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2?revision=108bd959-44bd-4619-9c19-26187abf5225&la=en&hash=E788CE92E5DFD64B2A8C246BBA91A249CB8E2D2D \
6-
PATH=$HOME/bin:$PATH:/opt/build/armbin/bin
6+
PATH=$PATH:/opt/build/armbin/bin
77

88
#Create volume /havoc/bin for compiled firmware binaries
99
VOLUME /havoc
@@ -15,8 +15,8 @@ RUN apt-get update \
1515
&& apt-get -qy autoremove \
1616
&& rm -rf /var/lib/apt/lists/*
1717

18-
ENV LANG C.UTF-8
19-
ENV LC_ALL C.UTF-8
18+
ENV LANG=C.UTF-8
19+
ENV LC_ALL=C.UTF-8
2020

2121
# Grab the GNU ARM toolchain from arm.com
2222
# Then extract contents to /opt/build/armbin/

0 commit comments

Comments
 (0)