Skip to content

Commit

Permalink
remove package installation from get-dependencies since it's already …
Browse files Browse the repository at this point in the history
…redone in runner stage and the packages aren't used in the get-deps stage
  • Loading branch information
ABUCKY0 committed Jan 3, 2025
1 parent 9b8f23f commit 649ca44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN <<-"EOF" bash
set -e

# Install apk packages
apk add --no-cache gcompat libc6-compat libstdc++ wget git gawk python3 pipx make unzip
# apk add --no-cache gcompat libc6-compat libstdc++ wget git gawk python3 pipx make unzip

toolchain="/arm-none-eabi-toolchain"
mkdir -p "$toolchain"
Expand All @@ -32,7 +32,7 @@ RUN <<-"EOF" bash
find "$toolchain"/arm-none-eabi/include/c++/13.3.1/arm-none-eabi/thumb -mindepth 1 -maxdepth 1 ! -name 'v7-a*' -exec rm -rf {} +

# Install pros cli (Used for creating template)
pipx install pros-cli
# pipx install pros-cli
apk cache clean # Cleanup image
EOF
# ------------
Expand Down

0 comments on commit 649ca44

Please sign in to comment.