Spaces:
Running
Running
File size: 376 Bytes
c30c42f a275d04 b50a6fd c30c42f 563b757 c30c42f 563b757 | 1 2 3 4 5 6 7 8 9 10 11 12 | 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"]
|