File tree Expand file tree Collapse file tree 5 files changed +3071
-2923
lines changed Expand file tree Collapse file tree 5 files changed +3071
-2923
lines changed Original file line number Diff line number Diff line change
1
+ version : ' 3'
2
+
3
+ services :
4
+ node :
5
+ build :
6
+ context : ./node/
7
+ args :
8
+ - UID=${DOCKER_UID}
9
+ - GID=${DOCKER_GID}
10
+ - VERSION=${NODE_VERSION}
11
+ user : ${DOCKER_UID}:${DOCKER_GID}
12
+ command : " sh -c 'npm install --no-bin-links && npm run build:dist'"
13
+ volumes :
14
+ - ../:/app
Original file line number Diff line number Diff line change
1
+ ARG VERSION
2
+
3
+ FROM bitnami/node:${VERSION}
4
+
5
+ USER root
6
+
7
+ ARG UID=1000
8
+ ARG GID=1000
9
+
10
+ RUN usermod -u ${UID} daemon
11
+ RUN groupmod -g ${GID} daemon
12
+
13
+ RUN mkdir /home/daemon
14
+ RUN chown -R daemon:daemon /home/daemon
15
+ RUN usermod -d /home/daemon daemon
16
+ RUN chown -R daemon:daemon /opt/bitnami/
17
+
18
+ USER daemon
19
+
20
+ RUN npm install -g @angular/
[email protected]
21
+
22
+ RUN npm install -g node-sass
23
+
24
+ RUN npm install -g webpack
Original file line number Diff line number Diff line change
1
+ # Fork of ol ng2-datepicker
2
+
3
+ ## Compile library
4
+
5
+ Compile it with :
6
+
7
+ ``` shell script
8
+ cd .build && docker-compose up node
9
+ ```
10
+ Commit modified files
11
+
12
+ ## Install Library
13
+
14
+ ``` shell script
15
+ npm install -P @id2s/ng2-datepicker@latest
16
+ ```
17
+
18
+ ## Update library
19
+ And update package version in your project by modifying.
20
+
21
+ ```
22
+ npm update
23
+ ```
24
+
25
+ Or modify commit value in ** package-lock.json**
26
+
27
+
1
28
# ng2-datepicker
2
29
3
30
Angular 2+ Simple and minimal datepicker component
You can’t perform that action at this time.
0 commit comments