File size: 116 Bytes
ce5a60e
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM node:slim

WORKDIR /app

COPY . .

EXPOSE 7860

RUN apt update -y &&\
    npm install

CMD ["node", "index.js"]