detection-backup / Dockerfile
ambon's picture
Update Dockerfile
9bfe7da verified
raw
history blame contribute delete
227 Bytes
FROM node:latest
RUN apt-get update && apt-get install -y && rm -rf /var/lib/apt/lists/*
RUN ls
WORKDIR /app
COPY package.json .
RUN ls
RUN npm i
COPY . .
EXPOSE 7860
CMD ["node", "--max-old-space-size=8192", "index.js"]