File size: 143 Bytes
70a459f
0244d91
 
31a2d08
70a459f
0244d91
31a2d08
70a459f
0244d91
75366ff
31a2d08
1
2
3
4
5
6
7
8
9
10
11
12
FROM node:alpine

WORKDIR /app
COPY package.json package.json
RUN npm install

COPY / /app
RUN npm run build

EXPOSE 3000
CMD ["npm", "start"]