-
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.
fix: decouple as monorepo + action wip
- Loading branch information
Showing
12 changed files
with
27,752 additions
and
52 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,3 +1,6 @@ | ||
/.yarn/** linguist-vendored | ||
/.yarn/releases/* binary | ||
/.yarn/plugins/**/* binary | ||
|
||
# Generated JavaScript files | ||
packages/action/dist/index.js linguist-generated=true -diff export-ignore |
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,15 +1,15 @@ | ||
FROM node:22-alpine AS build | ||
FROM node:20-alpine AS build | ||
|
||
USER 1000 | ||
WORKDIR /app | ||
ENV NODE_ENV=production | ||
|
||
COPY --chown=1000:1000 yarn.lock .yarnrc.yml ./ | ||
COPY --chown=1000:1000 .yarn .yarn | ||
RUN yarn fetch workspaces focus --production && yarn cache clean | ||
RUN yarn fetch workspaces focus token-bureau-server --production && yarn cache clean | ||
|
||
COPY server ./server | ||
COPY packages/server ./packages/server | ||
COPY package.json ./ | ||
|
||
EXPOSE 3000 | ||
CMD ["yarn", "start"] | ||
CMD ["yarn", "workspace", "token-bureau-server", "start"] |
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.