-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f5ea441
commit b225f2c
Showing
70 changed files
with
15,220 additions
and
31,132 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules/ |
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file was deleted.
Oops, something went wrong.
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,18 +1,18 @@ | ||
FROM node:18 | ||
FROM node:20 | ||
|
||
RUN yarn set version 4.5.0 | ||
|
||
WORKDIR /app | ||
|
||
COPY yarn.lock . | ||
EXPOSE 8545 | ||
|
||
COPY package.json . | ||
COPY yarn.lock . | ||
COPY .yarnrc.yml . | ||
COPY .yarn . | ||
|
||
COPY packages/blockchain/package.json ./packages/blockchain/ | ||
COPY packages/blockchain/package.json ./packages/blockchain/ | ||
|
||
RUN yarn install | ||
RUN yarn workspaces focus @nft-open-marketplace/blockchain | ||
|
||
WORKDIR /app/packages/blockchain | ||
|
||
RUN yarn install | ||
|
||
EXPOSE 8545 | ||
|
||
CMD ["npm", "run", "node"] |
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,16 +1,18 @@ | ||
FROM node:18 | ||
|
||
RUN yarn set version 4.5.0 | ||
|
||
WORKDIR /app | ||
|
||
COPY yarn.lock . | ||
COPY package.json . | ||
COPY yarn.lock . | ||
COPY .yarnrc.yml . | ||
COPY .yarn . | ||
|
||
COPY packages/ui/package.json ./packages/ui/ | ||
|
||
RUN yarn install | ||
RUN yarn workspaces focus @nft-open-marketplace/ui | ||
|
||
WORKDIR /app/packages/ui | ||
|
||
RUN yarn install | ||
|
||
EXPOSE 3000 |
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.