tsapi3/dockerfile

14 lines
195 B
Plaintext
Raw Normal View History

2018-05-24 16:22:31 -04:00
FROM timpreble/alpinearm:3.5.3
#Create App Directory
WORKDIR /usr/src/api
#Install Dependencies
COPY package.json .
RUN npm install
#Bundle ap source
COPY . .
EXPOSE 3001
CMD ["npm", "start"]