-
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.
Added dockerfile for website, modified taskfile
- Loading branch information
Bikash
authored and
Bikash
committed
Dec 21, 2023
1 parent
ff74a4a
commit cc99509
Showing
4 changed files
with
30 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM node:20.8.1-alpine as node | ||
WORKDIR /app | ||
|
||
COPY ./src/apps/devdoc ./src/apps/devdoc | ||
COPY ./src/design-system/tailwind-base.js ./src/design-system/tailwind-base.js | ||
COPY ./src/design-system/css-plugins ./src/design-system/css-plugins | ||
COPY ./src/design-system/css ./src/design-system/css | ||
COPY ./src/design-system/out ./src/design-system/out | ||
|
||
WORKDIR /app/src/apps/devdoc | ||
|
||
RUN npm i -g pnpm | ||
RUN pnpm i -p | ||
|
||
RUN npm run build | ||
|
||
ENTRYPOINT pnpm 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