api-client/Dockerfile

13 lines
126 B
Docker
Raw Normal View History

2019-09-25 00:52:25 +00:00
FROM node:12.10.0-buster
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]