Files
hypermind/Dockerfile
T
lklynet b86cf8bcce fix: correct file path for hypernode.svg in Dockerfile
The hypernode.svg file was being copied to the wrong location. Update the COPY command to place it in the public directory where it belongs.
2026-01-12 10:18:37 -05:00

19 lines
247 B
Docker

FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN npm ci --omit=dev
COPY public/ ./public/
COPY server.js ./public/hypernode.svg LICENSE ./
COPY src/ ./src/
ENV PORT=3000
ENV NODE_ENV=production
EXPOSE 3000
CMD ["node", "server.js"]