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