File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -24,10 +24,12 @@ RUN curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - && \
2424
2525ARG bsp_url
2626ARG device_type
27- COPY . /usr/src/app/jetson-flash
2827
28+ COPY package.json /usr/src/app/
2929RUN npm install
3030
31+ COPY . /usr/src/app/jetson-flash
32+
3133RUN wget "$bsp_url" -O "/tmp/Linux_for_Tegra.tbz2" && tar -xvf "/tmp/Linux_for_Tegra.tbz2" -C "/tmp/" && rm /tmp/Linux_for_Tegra.tbz2
3234RUN wget https://developer.nvidia.com/downloads/embedded/L4T/r32_Release_v7.5/overlay_32.7.5_PCN211181.tbz2 -O "/tmp/overlay_32.7.5_PCN211181.tbz2" && mkdir /tmp/overlay && tar xf /tmp/overlay_32.7.5_PCN211181.tbz2 -C /tmp/overlay/ && rm -rf /tmp/overlay_32.7.5_PCN211181.tbz2 && cp /tmp/overlay/Linux_for_Tegra/bootloader/t210ref/BCT/P3448_A00_lpddr4_204Mhz_P987.cfg /usr/src/app/jetson-flash/BCT_OVERLAY_CFG/ && rm -rf /tmp/overlay
3335
You can’t perform that action at this time.
0 commit comments