Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
!package.json
!yarn.lock
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ dist/
node_modules/
storybook-static/
package-lock.json
yarn.lock
*.log
.eslintcache
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM mhart/alpine-node:10
WORKDIR /usr/src
COPY package.json yarn.lock /usr/src/
RUN yarn install
COPY . .
RUN yarn storybook:build
RUN mv ./storybook-static /public
2 changes: 2 additions & 0 deletions now.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{
"type": "static",
"public": true,
"alias": "react-semantic-ui-datepickers",
"name": "react-semantic-ui-datepickers"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"semantic-release": "^15.8.1",
"semantic-ui-css": "^2.3.1",
"semantic-ui-react": "^0.79.1",
"serve": "^9.4.0",
"serve": "^10.0.0",
"travis-deploy-once": "^5.0.1"
},
"peerDependencies": {
Expand Down
Loading