diff --git a/Dockerfile b/Dockerfile index a79b60a..d433093 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,7 @@ -# Set Node.js version -FROM node:20-alpine +FROM node:20-bookworm -RUN apk update && apk add --no-cache curl bash nano - -SHELL ["/bin/bash", "-c"] +RUN apt update +RUN apt install -y curl bash nano wget zip unzip RUN curl -fsSL https://bun.sh/install | bash ENV PATH="/root/.bun/bin:${PATH}" diff --git a/bun.lockb b/bun.lockb index ee0571e..753a82a 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/buncid.config.json b/buncid.config.json new file mode 100644 index 0000000..2101e41 --- /dev/null +++ b/buncid.config.json @@ -0,0 +1,7 @@ +{ + "start": "bun start", + "preflight": ["bunx buncid-builds-next"], + "postflight": ["echo 'Server Running ...'"], + "first_run": true, + "port": [3000] +} diff --git a/package.json b/package.json index 0a3aa96..db40682 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "lint": "next lint" }, "dependencies": { + "@moduletrace/buncid": "^1.0.7", "@moduletrace/datasquirel": "^2.7.4", "lodash": "^4.17.21", "lucide-react": "^0.462.0",