FROM fascinated/docker-images:node-latest
EXPOSE 5000
RUN cd /artifacts/**
COPY . .
RUN pwd
RUN npm install
RUN npm run build
CMD npm run start