-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin' into feature/vf-mounts-prompts
- Loading branch information
Showing
33 changed files
with
698 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM ubuntu:24.10 AS downloader | ||
RUN apt-get update && apt-get install -y curl unzip | ||
ARG SHINKAI_NODE_VERSION | ||
RUN curl -L -o shinkai-node.zip https://download.shinkai.com/shinkai-node/binaries/production/x86_64-unknown-linux-gnu/${SHINKAI_NODE_VERSION:-latest}.zip | ||
RUN FILE_SIZE=$(stat -c %s /shinkai-node.zip) && \ | ||
if [ $FILE_SIZE -lt 26214400 ]; then \ | ||
echo "Error: shinkai-node file is less than 25MB" && \ | ||
exit 1; \ | ||
fi | ||
RUN unzip -o shinkai-node.zip -d ./node | ||
RUN chmod +x /node/shinkai-node | ||
|
||
FROM ubuntu:24.10 AS runner | ||
RUN apt-get update && apt-get install -y openssl ca-certificates | ||
WORKDIR /app | ||
COPY --from=downloader /node ./ | ||
|
||
EXPOSE 9550 | ||
ENTRYPOINT ["/bin/sh", "-c", "/app/shinkai-node"] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ members = [ | |
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.9.4" | ||
version = "0.9.5" | ||
edition = "2021" | ||
authors = ["Nico Arqueros <[email protected]>"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.