chat / Dockerfile
sharktide's picture
Update Dockerfile
84a3c50 verified
Raw
History Blame Contribute Delete
378 Bytes
# ── Build stage ──────────────────────────────────────────────────────────────
FROM node:26
WORKDIR /app
COPY package.json ./
RUN npm install --omit=dev
COPY . .
EXPOSE 7860
ENV PORT=7860
ENV NODE_ENV=production
CMD ["node", "server/index.js"]