We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2dacc8 commit 886bc67Copy full SHA for 886bc67
Dockerfile
@@ -15,7 +15,7 @@ ONBUILD ADD https://mmseqs.com/archive/${FOLDSEEK_COMMIT}/foldseek-linux-arm64.t
15
16
FROM $downloader AS downloader
17
18
-FROM --platform=$BUILDPLATFORM debian:stable-backports as builder
+FROM --platform=$BUILDPLATFORM debian:stable-backports AS builder
19
ARG TARGETARCH
20
ARG APP
21
ARG FOLDSEEK_COMMIT
util/spacedust_wrapper.sh
@@ -0,0 +1,10 @@
1
+#!/bin/sh
2
+FLAGS="$(grep -m 1 '^flags' /proc/cpuinfo)"
3
+case "${FLAGS}" in
4
+ *avx2*)
5
+ exec /usr/local/bin/spacedust_avx2 "$@"
6
+ ;;
7
+ *)
8
+ exec /usr/local/bin/spacedust_sse41 "$@"
9
10
+esac
0 commit comments