aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 892c1596ecf31126772b49094affa3103a278a3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Dockerfile to build which-api image

FROM node:12

WORKDIR /app

COPY package*.json ./

RUN npm install

COPY . .

EXPOSE 3030

CMD ["npm", "start"]