Diff of /app/frontend/Dockerfile [000000] .. [69507b]

Switch to unified view

a b/app/frontend/Dockerfile
1
FROM node:13.12.0-alpine
2
MAINTAINER Ayrton San Joaquin <ajsanjoaquin@gmail.com>
3
4
ENV PATH ./node_modules/.bin:$PATH
5
6
COPY package.json ./
7
COPY package-lock.json ./
8
9
# install app dependencies
10
RUN npm install --production --silent
11
12
13
COPY . ./
14
15
# start app
16
#CMD ["cd", "frontend"]
17
EXPOSE 5000
18
CMD ["npm", "start"]