-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from debridge-finance/release/v1.1.4
Release/v1.1.4
- Loading branch information
Showing
57 changed files
with
3,886 additions
and
45,037 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
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 |
---|---|---|
|
@@ -19,4 +19,5 @@ data | |
/orbitdb/orbitdb/* | ||
|
||
.DS_Store | ||
heap_info.json | ||
heap_info.json | ||
config/chains_config.json |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,29 @@ | ||
FROM node:14 | ||
RUN npm install -g typescript@4.3.5 @nestjs/cli@8.0.0 | ||
COPY package.json /home/node | ||
COPY package-lock.json /home/node | ||
COPY tsconfig.json /home/node | ||
COPY tsconfig.build.json /home/node | ||
COPY nest-cli.json /home/node | ||
WORKDIR /home/node | ||
FROM node:14 as builder | ||
RUN npm install npm@7 -g | ||
RUN npm install -g typescript@4.5.4 @nestjs/cli@8.1.6 | ||
RUN mkdir /build | ||
|
||
COPY package.json /build | ||
COPY package-lock.json /build | ||
COPY tsconfig.json /build | ||
COPY tsconfig.build.json /build | ||
COPY nest-cli.json /build | ||
COPY src /build/src | ||
|
||
WORKDIR /build | ||
|
||
RUN mkdir stats | ||
|
||
RUN npm install | ||
COPY src/ /home/node/src | ||
RUN npm run build | ||
CMD npm start | ||
|
||
FROM node:14 | ||
RUN mkdir /app | ||
WORKDIR /app | ||
COPY --from=builder /build/dist /app/dist | ||
COPY --from=builder /build/node_modules /app/node_modules | ||
COPY --from=builder /build/stats /app/stats | ||
COPY --from=builder /build/package.json /app | ||
COPY --from=builder /build/package-lock.json /app | ||
|
||
CMD npm run start:prod |
Oops, something went wrong.