Skip to content

Commit

Permalink
Update Dockerfile (#24)
Browse files Browse the repository at this point in the history
Fix issue with pnpm build in Docker environment
  • Loading branch information
dazoulay committed Dec 11, 2023
1 parent 1efd348 commit a80e9b4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ FROM node:18-alpine

RUN npm install -g pnpm

COPY . .
WORKDIR /composable-ui
COPY . /cui
WORKDIR /cui
RUN pnpm i -r
WORKDIR /cui/composable-ui

CMD ["pnpm", "dev"]
EXPOSE 3000
EXPOSE 3000

2 comments on commit a80e9b4

@vercel
Copy link

@vercel vercel bot commented on a80e9b4 Dec 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deployment failed with the following error:

Too many requests - try again in 46 seconds (more than 60, code: "api-deployments-flood").

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lines Statements Branches Functions
Coverage: 44%
43.54% (297/682) 23.11% (46/199) 23.23% (33/142)

Please sign in to comment.