File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 127127 "contributions" : [
128128 " code"
129129 ]
130+ },
131+ {
132+ "login" : " ioribrn" ,
133+ "name" : " Jawad Moustadif" ,
134+ "avatar_url" : " https://avatars.githubusercontent.com/u/43734587?v=4" ,
135+ "profile" : " https://github.com/ioribrn" ,
136+ "contributions" : [
137+ " code"
138+ ]
130139 }
131140 ],
132141 "contributorsPerLine" : 7 ,
Original file line number Diff line number Diff line change 1+ FROM node:13.12.0-alpine
2+
3+ # set working directory
4+ WORKDIR /app
5+
6+ # add `/app/node_modules/.bin` to $PATH
7+ ENV PATH /app/node_modules/.bin:$PATH
8+
9+ # install app dependencies
10+ COPY package.json ./
11+ COPY package-lock.json ./
12+ RUN npm install --silent
13+ RUN npm install
14+ # react-scripts@3.4.1 -g --silent
15+
16+ # add app
17+ COPY . ./
18+
19+ # start app
20+ CMD ["npm" , "start" ]
Original file line number Diff line number Diff line change @@ -218,6 +218,7 @@ If you can help us with these. Please don't hesitate to open an [pull request](h
218218 < td align = " center" >< a href = " https://praveen.science/" >< img src = " https://avatars.githubusercontent.com/u/1830380?v=4?s=100" width = " 100px;" alt = " " / >< br / >< sub>< b> Praveen Kumar Purushothaman< / b>< / sub>< / a>< br / >< a href = " https://github.com/ashutosh1919/masterPortfolio/commits?author=praveenscience" title = " Documentation" > 📖< / a>< / td>
219219 < td align = " center" >< a href = " http://baul.ml" >< img src = " https://avatars.githubusercontent.com/u/33395806?v=4?s=100" width = " 100px;" alt = " " / >< br / >< sub>< b> paul< / b>< / sub>< / a>< br / >< a href = " https://github.com/ashutosh1919/masterPortfolio/commits?author=baulml" title = " Code" > 💻< / a>< / td>
220220 < td align = " center" >< a href = " https://github.com/SandipDhang" >< img src = " https://avatars.githubusercontent.com/u/50694884?v=4?s=100" width = " 100px;" alt = " " / >< br / >< sub>< b> Sandip Dhang< / b>< / sub>< / a>< br / >< a href = " https://github.com/ashutosh1919/masterPortfolio/commits?author=SandipDhang" title = " Code" > 💻< / a>< / td>
221+ < td align = " center" >< a href = " https://github.com/ioribrn" >< img src = " https://avatars.githubusercontent.com/u/43734587?v=4?s=100" width = " 100px;" alt = " " / >< br / >< sub>< b> Jawad Moustadif< / b>< / sub>< / a>< br / >< a href = " https://github.com/ashutosh1919/masterPortfolio/commits?author=ioribrn" title = " Code" > 💻< / a>< / td>
221222 < / tr>
222223< / table>
223224
Original file line number Diff line number Diff line change 1+ version : ' 3.7'
2+
3+ services :
4+
5+ sample :
6+ container_name : portfolio
7+ build :
8+ context : .
9+ dockerfile : Dockerfile
10+ volumes :
11+ - ' .:/app'
12+ - ' /app/node_modules'
13+ ports :
14+ - 3001:3000
15+ # environment:
16+ # - CHOKIDAR_USEPOLLING=true
You can’t perform that action at this time.
0 commit comments