Fredrik Wigsnes
Fredrik Wigsnes
I have the same issue. \>\>\> import wikipedia \>\>\> wikipedia.page("Republican Party (United States)") Error: `Traceback (most recent call last): File "", line 1, in File "C:\Users\fredr\Anaconda3\lib\site-packages\wikipedia\wikipedia.py", line 276, in page...
I am having a similar issues when I try to install using yarn 4.0.1. But I am missing next, and you next-server. Not sure if it is related. ``` 2023-11-07...
@pio/app is the name in our package.json. I assumed it did not matter if you use the folder name or workspace name. I will check. Seems to only work with...
My `.dockerignore` ``` node_modules **/node_modules .git .gitignore *.md dist out ``` do you see server.js in your folder? Do you also call you folder apps? My folder structure: ``` monorepo...
Do you see `server.js` in your files on docker when you run the app?
ok, I am a bit lost then. At what line does it crash? My versions are: ``` "turbo": "^1.10.16", "next": "^13.5.6", ``` Do you still have this error? > ```js...
We ended up going back to using yarn Dockerfile: ``` # Install dependencies only when needed FROM node:20-alpine AS deps ENV YARN_VERSION 4.0.2 RUN corepack enable && corepack prepare yarn@${YARN_VERSION}...