The_AI_Herald / Dockerfile
Gorantla
Initial commit: The AI Herald
27cc612
Raw
History Blame Contribute Delete
166 Bytes
FROM node:18-alpine
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install --omit=dev
COPY . .
ENV PORT=7860
EXPOSE 7860
CMD ["node", "server.js"]