KmnNew2.1 / Dockerfile
Rooni's picture
Update Dockerfile
c7a5057 verified
raw
history blame
161 Bytes
FROM node:18
WORKDIR /app
COPY package.json ./
RUN npm install
RUN npm install winston winston-daily-rotate-file
COPY . .
EXPOSE 7860
CMD [ "node", "server.js" ]