File size: 167 Bytes
eedbd5e
 
 
 
 
 
 
 
 
 
26a05af
 
98d81d4
eedbd5e
98d81d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM node:latest

WORKDIR /usr/src/app

COPY package*.json ./

RUN npm install

COPY . .

RUN npm run build

EXPOSE 7860

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