FROM node:20-slim RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* ARG CACHEBUST=1784293479 RUN curl -L https://github.com/zbrlang/zbr/releases/latest/download/zbr-linux-x64 -o /usr/local/bin/zbr && chmod +x /usr/local/bin/zbr WORKDIR /app COPY package*.json ./ RUN npm install COPY . . RUN npm run build EXPOSE 7860 CMD ["node", "dist/server.js"]