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
| /** | |
| |-------------------------------------------------------------------------- | |
| | gulp browser-sync | |
| |-------------------------------------------------------------------------- | |
| * | |
| * Browser Sync | |
| * @description Refresh the Brwoser after File Change. | |
| * Combined with webpack for HMR or Content Reload | |
| * | |
| * @package generator-mh-boilerplate |
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
| /** | |
| |-------------------------------------------------------------------------- | |
| | gulp browser-sync | |
| |-------------------------------------------------------------------------- | |
| * | |
| * Browser Sync | |
| * @description Refresh the Brwoser after File Change. | |
| * Combined with webpack for HMR or Content Reload | |
| * | |
| * @package generator-mh-boilerplate |
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
| const I = x => x; | |
| const K = x => y => x; | |
| const A = f => x => f(x); | |
| const T = x => f => f(x); | |
| const W = f => x => f(x)(x); | |
| const C = f => y => x => f(x)(y); | |
| const B = f => g => x => f(g(x)); | |
| const S = f => g => x => f(x)(g(x)); | |
| const P = f => g => x => y => f(g(x))(g(y)); | |
| const Y = f => (g => g(g))(g => f(x => g(g)(x))); |
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
| FROM node:boron-alpine | |
| RUN mkdir -p /home/app | |
| WORKDIR /home/app | |
| COPY . /home/app | |
| COPY --from=$BUILD_FROM /home/app . | |
| CMD ["node", "app.js"] |
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
| FROM node:boron | |
| RUN mkdir -p /home/app | |
| WORKDIR /home/app | |
| COPY . /home/app | |
| RUN npm install --production |
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
| FROM node:boron | |
| RUN mkdir -p /home/app | |
| WORKDIR /home/app | |
| COPY . /home/app | |
| RUN npm install --production | |
| FROM node:boron-alpine |
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
| FROM node:boron as installer | |
| RUN mkdir -p /home/app | |
| WORKDIR /home/app | |
| COPY . /home/app | |
| RUN npm install --production | |
| FROM node:boron-alpine as release |
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
| FROM node:boron-alpine | |
| RUN mkdir -p /home/app | |
| WORKDIR /home/app | |
| COPY . /home/app | |
| CMD ["node", "app.js"] |
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
| FROM node:boron | |
| RUN mkdir -p /home/app | |
| WORKDIR /home/app | |
| COPY . /home/app | |
| RUN npm install --production |
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
| FROM node:boron | |
| RUN mkdir -p /home/app | |
| WORKDIR /home/app | |
| COPY . /home/app | |
| RUN npm install --production | |
| CMD ["node", "app.js"] |
NewerOlder