tsapi3/dockerfile

14 lines
189 B
Plaintext
Raw Normal View History

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