-
Notifications
You must be signed in to change notification settings - Fork 1
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 #292 from kloudlite/ui/reg-images
WEB: Regitry Images implementation and webinar oauth login method implemented
- Loading branch information
Showing
39 changed files
with
1,269 additions
and
306 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,34 @@ | ||
FROM node:20.8.1-alpine as base | ||
RUN apk add g++ make py3-pip | ||
RUN npm i -g pnpm | ||
WORKDIR /app | ||
COPY ./package.json ./package.json | ||
COPY ./pnpm-lock.yaml ./pnpm-lock.yaml | ||
|
||
COPY ./src/generated/package.json ./src/generated/package.json | ||
COPY ./src/generated/plugin/package.json ./src/generated/plugin/package.json | ||
|
||
RUN pnpm i | ||
|
||
|
||
# design system | ||
COPY ./src/design-system/ ./src/design-system/ | ||
WORKDIR /app/src/design-system | ||
RUN pnpm i -p | ||
RUN pnpm local:release | ||
|
||
# webinar | ||
WORKDIR /app | ||
COPY ./src/apps/webinar ./src/apps/webinar | ||
WORKDIR /app/src/apps/webinar | ||
RUN pnpm i -p | ||
RUN pnpm build | ||
|
||
FROM node:20.8.1-alpine | ||
WORKDIR /app | ||
COPY --from=base /app/src/apps/webinar/.next ./.next | ||
COPY --from=base /app/src/apps/webinar/public ./public | ||
COPY --from=base /app/src/apps/webinar/package.json ./package.json | ||
COPY --from=base /app/src/apps/webinar/node_modules ./node_modules | ||
|
||
ENTRYPOINT npm run 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
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
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 |
---|---|---|
|
@@ -137,4 +137,5 @@ export { | |
StackSimple, | ||
Play, | ||
Pause, | ||
Dockerlogo, | ||
} from '@jengaicons/react'; |
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.