Skip to content

Commit

Permalink
remove uname for now
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAlcibiades committed Nov 13, 2023
1 parent 14f2cf7 commit 38505ef
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 @@ -20,7 +20,7 @@ COPY --from=planner /opt/foundry /opt/foundry
# Get the lock-like file
COPY --from=planner /opt/foundry/recipe.json recipe.json

RUN apt-get update -y && apt-get install -y gcc-aarch64-linux-gnu linux-headers-$(uname -r)
RUN apt-get update -y && apt-get install -y gcc-aarch64-linux-gnu linux-headers
RUN apt-get clean && rm -rf /var/lib/apt/lists/*

# Build our project dependencies, not our application!
Expand All @@ -39,7 +39,7 @@ RUN strip /opt/foundry/target/release/forge \

FROM debian:bookworm-slim AS foundry-environment

RUN apt-get update -y && apt-get install -y linux-headers-$(uname -r) git
RUN apt-get update -y && apt-get install -y linux-headers git
RUN apt-get clean && rm -rf /var/lib/apt/lists/*

# Foundry tools
Expand Down

0 comments on commit 38505ef

Please sign in to comment.