Skip to content

Commit

Permalink
revert dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph committed Jul 3, 2024
1 parent 426b893 commit 00ce5e0
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ RUN if [ "$TARGETPLATFORM" = "linux/arm64" ] && [ "$BUILDPLATFORM" != "linux/arm
apt-get update && apt-get install -y gcc-x86-64-linux-gnu && \
echo "export CC=x86_64-linux-gnu-gcc" > ./build_env.sh \
; else \
apt-get update && apt-get install -y gcc-multilib && \
echo "export CC=gcc" > ./build_env.sh \
; fi

Expand Down
3 changes: 0 additions & 3 deletions tests/antithesis/avalanchego/Dockerfile.builder-instrumented
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ RUN go mod download
# Copy the code into the container
COPY . .

# runtime/cgo requires installing gcc-multilib
RUN 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,8 +13,5 @@ RUN go mod download
# Copy the code into the container
COPY . .

# runtime/cgo requires installing gcc-multilib
RUN 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 00ce5e0

Please sign in to comment.