This repository was archived by the owner on Jul 21, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
{ pkgs ? import <nixpkgs> { } } :
2
2
pkgs . rustPlatform . buildRustPackage rec {
3
3
pname = "rce-engine" ;
4
- version = "1.2.3 " ;
4
+ version = "1.2.4 " ;
5
5
cargoLock . lockFile = ./Cargo.lock ;
6
6
src = pkgs . lib . cleanSource ./. ;
7
7
}
Original file line number Diff line number Diff line change 14
14
in
15
15
pkgs . dockerTools . buildImage {
16
16
name = "toolkithub/rce-engine" ;
17
- tag = "1.2.3 " ;
17
+ tag = "1.2.4 " ;
18
18
created = "now" ;
19
19
20
20
config = {
@@ -51,7 +51,7 @@ pkgs.dockerTools.buildImage {
51
51
Labels = {
52
52
"org.opencontainers.image.authors" = "Success Kingsley <hello@xosnrdev.tech>" ;
53
53
"org.opencontainers.image.source" = "https://github.com/toolkithub/rce-engine" ;
54
- "org.opencontainers.image.version" = "1.2.3 " ;
54
+ "org.opencontainers.image.version" = "1.2.4 " ;
55
55
"org.opencontainers.image.description" = "Docker-based engine for executing untrusted code in isolated containers." ;
56
56
} ;
57
57
} ;
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ usermod -aG docker rce
28
28
``` bash
29
29
mkdir /home/rce/bin
30
30
cd /home/rce/bin
31
- wget https://github.com/toolkithub/rce-engine/releases/download/v.1.2.3 /rce-engine_linux-x64.tar.gz
31
+ wget https://github.com/toolkithub/rce-engine/releases/download/v.1.2.4 /rce-engine_linux-x64.tar.gz
32
32
tar -zxf rce-engine_linux-x64.tar.gz
33
33
rm rce-engine_linux-x64.tar.gz
34
34
chown -R rce:rce /home/rce/bin
Original file line number Diff line number Diff line change 3
3
# +-------------------------------------------------------------------------------------------------------------------------------------+
4
4
# Author: Success Kingsley <hello@xosnrdev.tech>
5
5
# Last Updated: 2024-09-16
6
- # Version: 1.2.3
6
+ # Version: 1.2.4
7
7
# License: MIT
8
8
# Description: This script installs the rce-engine on an Ubuntu 22.04 or latest machine.
9
9
# Usage: curl -fsSL https://raw.githubusercontent.com/toolkithub/rce-engine/main/scripts/install.sh -o install.sh \
@@ -75,7 +75,7 @@ sudo mkdir -p /home/rce/bin
75
75
cd /home/rce/bin
76
76
77
77
log " Downloading rce-engine binary..."
78
- curl -LO https://github.com/toolkithub/rce-engine/releases/download/v1.2.3 /rce-engine_linux-x64.tar.gz || error " Failed to download rce-engine binary"
78
+ curl -LO https://github.com/toolkithub/rce-engine/releases/download/v1.2.4 /rce-engine_linux-x64.tar.gz || error " Failed to download rce-engine binary"
79
79
80
80
log " Extracting rce-engine binary..."
81
81
sudo tar -zxf rce-engine_linux-x64.tar.gz || error " Failed to extract rce-engine binary"
You can’t perform that action at this time.
0 commit comments