Oracus-AI / Dockerfile
NepsenX's picture
Update Dockerfile
0af125b verified
Raw
History Blame
223 Bytes
FROM node:20-slim
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 7860 7000 2000
CMD ["node", "dist/index.js"]