diff --git a/index.js b/index.js
new file mode 100644
index 0000000..f11e458
--- /dev/null
+++ b/index.js
@@ -0,0 +1,8 @@
+const { exec } = require('node:child_process')
+
+exec('apk update', (err, output) => {
+    console.log(output)
+})
+exec('apk add bash', (err, output) => {
+    console.log(output)
+})
\ No newline at end of file