Aqui vai um parágrafo de descrição do seu projeto
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # use the lightest version of node:linux | |
| FROM node:12.2.0-alpine as build | |
| # directory on the host machine | |
| WORKDIR /app | |
| ENV PATH /app/node_modules/.bin:$PATH | |
| #copy 'package.json' to /app/ | |
| COPY package.json /app/package.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Creates a new dir to download build files | |
| mkdir install_cv && cd install_cv | |
| # install git | |
| sudo pacman git | |
| #install python35 and clone repo's in parallel | |
| echo 1 | yaourt --noconfirm --maintainer Leryan python35 & | |
| git clone https://github.com/Itseez/opencv.git & |