Skip to content

Commit

Permalink
opt out for arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
hanabi1224 committed Sep 13, 2024
1 parent 931b6cf commit 00b94e1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ ENV PATH="/root/.cargo/bin:${PATH}"
RUN curl -sSL https://raw.githubusercontent.com/voidint/g/master/install.sh | bash
RUN "${HOME}/.g/bin/g" install 1.21 && ln -sf "${HOME}/.g/go/bin/go" /usr/local/bin/go && go version

# Opt out F3 sidecar FFI build for arm64 for now
RUN if [ "${BUILDPLATFORM}" != "linux/amd64" ] ;then echo FOREST_F3_SIDECAR_FFI_BUILD_OPT_OUT=1 >>/etc/environment ; fi
RUN echo "FOREST_F3_SIDECAR_FFI_BUILD_OPT_OUT=${FOREST_F3_SIDECAR_FFI_BUILD_OPT_OUT}"

Check failure on line 43 in Dockerfile

View workflow job for this annotation

GitHub Actions / docker-lint

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.

# Copy the cross-compilation scripts
COPY --from=xx / /

Expand Down

0 comments on commit 00b94e1

Please sign in to comment.