Skip to content

Commit fe1202e

Browse files
author
NATIVEL Nicolas
authored
Merge pull request #44 from KiFoundation/stride_v11.0.0
Stride v11.0.0
2 parents 4058709 + 1f9e407 commit fe1202e

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

stride/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
strided

stride/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM --platform=linux/amd64 golang:1.19-alpine3.15
2+
3+
COPY build.sh /build.sh
4+
5+
RUN /build.sh

stride/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
build:
2+
docker build -t stride-build .
3+
docker rm stride-build || true
4+
docker create -ti --name stride-build stride-build /bin/sh
5+
docker cp stride-build:/go/stride/build/strided .

stride/build.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/sh
2+
3+
apk add git gcc build-base linux-headers
4+
5+
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

Comments
 (0)