We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying deploy using docker file
# Use stable Node.js LTS version FROM node:22-slim # Install system dependencies RUN apt-get update && apt-get install -y \ build-essential \ python3 \ git \ ca-certificates \ sqlite3 \ libsqlite3-dev \ && apt-get clean && rm -rf /var/lib/apt/lists/* # Install pnpm RUN npm install -g [email protected] # Set working directory WORKDIR /app # Copy package files COPY package.json pnpm-lock.yaml ./ # Install dependencies RUN pnpm install --frozen-lockfile # Rebuild native modules RUN pnpm rebuild better-sqlite3 # Copy application files COPY . . # Expose application port EXPOSE 3000 # Start the application with debugging CMD ["pnpm" , "start"]
and i get this error
⛔ ERRORS Unhandled error in startAgents: {"code":"ERR_USE_AFTER_CLOSE"}
The text was updated successfully, but these errors were encountered:
Shall I work on this issue?
Sorry, something went wrong.
hey is the issue resolved? are you able to run dockerfile?
already solved thx
No branches or pull requests
I'm trying deploy using docker file
and i get this error
The text was updated successfully, but these errors were encountered: