Skip to content

Commit 735396b

Browse files
authored
Merge branch 'ashutosh1919:master' into master
2 parents ff57510 + 6661b82 commit 735396b

4 files changed

Lines changed: 46 additions & 0 deletions

File tree

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,15 @@
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,

Dockerfile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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"]

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

docker-compose.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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

0 commit comments

Comments
 (0)