Skip to content

Commit

Permalink
Try to fix antithesis builds
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph committed Jul 3, 2024
1 parent baf1f64 commit 9a090f4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/antithesis/avalanchego/Dockerfile.builder-instrumented
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ RUN go mod download
# Copy the code into the container
COPY . .

# runtime/cgo requires installing gcc-multilib
apt-get update && apt-get install -y gcc-multilib

# Ensure pre-existing builds are not available for inclusion in the final image
RUN [ -d ./build ] && rm -rf ./build/* || true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,8 @@ RUN go mod download
# Copy the code into the container
COPY . .

# runtime/cgo requires installing gcc-multilib
apt-get update && apt-get install -y gcc-multilib

# Ensure pre-existing builds are not available for inclusion in the final image
RUN [ -d ./build ] && rm -rf ./build/* || true

0 comments on commit 9a090f4

Please sign in to comment.