mirror of
https://github.com/lklynet/hypermind.git
synced 2026-05-03 09:30:36 +00:00
b86cf8bcce
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.
19 lines
247 B
Docker
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"]
|