a
File size: 193 Bytes
4153c82
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM node:slim

WORKDIR /app

COPY . .

EXPOSE 7860

RUN apt-get update && \
    chmod 775 server index.js package.json start.sh /app &&\
    npm install

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