-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loosen validation requirements for dropped indices (#69)
Motivation ---------- We shouldn't require the index definition details for indices being dropped. Modifications ------------- Accept dropped indices with only a name attribute. Update to NPM lockfile v2. Improve some local test scripts. Fixes #67
- Loading branch information
1 parent
82e5c8d
commit 42691aa
Showing
6 changed files
with
10,376 additions
and
27 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
sudo: required | ||
language: node_js | ||
node_js: | ||
- "12" | ||
- "14" | ||
services: | ||
- docker | ||
before_script: | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
FROM node:12 as build | ||
FROM node:14 as build | ||
|
||
RUN npm install -g npm@7.19.1 | ||
WORKDIR /app | ||
COPY package*.json ./ | ||
RUN npm install | ||
COPY ./ ./ | ||
RUN npm run-script lint && \ | ||
npm run-script build | ||
|
||
FROM node:12 | ||
FROM node:14 | ||
LABEL maintainer=bburnett@centeredgesoftware.com | ||
WORKDIR /app | ||
COPY --from=build /app ./ | ||
|
||
RUN ["ln", "-s", "/app/bin/couchbase-index-manager", "/bin/couchbase-index-manager"] | ||
ENTRYPOINT ["/app/bin/couchbase-index-manager"] |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.