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.
2 parents 4058709 + 1f9e407 commit fe1202eCopy full SHA for fe1202e
stride/.gitignore
@@ -0,0 +1 @@
1
+strided
stride/Dockerfile
@@ -0,0 +1,5 @@
+FROM --platform=linux/amd64 golang:1.19-alpine3.15
2
+
3
+COPY build.sh /build.sh
4
5
+RUN /build.sh
stride/Makefile
+build:
+ docker build -t stride-build .
+ docker rm stride-build || true
+ docker create -ti --name stride-build stride-build /bin/sh
+ docker cp stride-build:/go/stride/build/strided .
stride/build.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+apk add git gcc build-base linux-headers
+git clone https://github.com/Stride-Labs/stride.git
6
+pwd
7
+cd stride
8
+git checkout v11.0.0
9
+BUILD_TAGS=muslc LINK_STATICALLY=true make build
0 commit comments