-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setup pnpm and Dockerfile #206
Conversation
Signed-off-by: Jonathan Irvin <[email protected]>
@jonathan-irvin is attempting to deploy a commit to the Listinai Team on Vercel. A member of the Team first needs to authorize it. |
|
||
FROM base AS build | ||
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile | ||
RUN pnpx nx run-many --target=build --projects=frontend |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi! Did you check this?
I think this command will run in an endless loop.
Will try it tomorrow :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It won't run in an endless loop because it doesn't work :)
I'm having trouble with some missing dependencies again. In lieu of building all three, I was attempting to isolate the frontend.
The end-goal is to build them all separately into 3 different container images so they can be hosted separately for kubernetes...I just can't get them to build.
Any tips would be astronomical!
Signed-off-by: Jonathan Irvin <[email protected]>
Signed-off-by: Jonathan Irvin <[email protected]>
Signed-off-by: Jonathan Irvin <[email protected]>
Signed-off-by: Jonathan Irvin <[email protected]>
Signed-off-by: Jonathan Irvin <[email protected]>
RUN apk add --update --no-cache python3 make build-base gcc && \ | ||
ln -sf python3 /usr/bin/python && \ | ||
python3 -m ensurepip && \ | ||
pip3 install --no-cache --upgrade pip setuptools |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to agree consistency between these difference dockerfiles, because if one is on Alpine, another on Fedora, one installs python and stuff, and the other doesn't, it'll create a support mess.
I'm not saying which approach is better or worse, not at all, yours might be the way this goes - just we need to have a conversation before either PR gets merged about which is the technically better approach, so they're both consistent.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I'm starting a baseline from barebones and assuming nothing is in place and adding as we go. We can refine from there.
From @nevo-david, I know you like Fedora, I respect that, but maybe you can maintain a separate fork with a fedora container image?
Can you setup Github actions and prove it out?
https://github.com/jonathan-irvin/postiz-app/actions/runs/10753709803/job/29823454793
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Our "problem" @jamesread is that we don't know the complete picture of dependencies. I added python because node-gyp needs it to run as well as some other things to build the deps on the arch of choice.
Still some setup stuff missing.
I just want it to build successfully first. Then dev images and scaling out infrastructure comes later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @jonathan-irvin , I was also going to setup GitHub actions as well (was talking about this on Discord), but I saw you did it, so didn't want to "step on your toes". I'm more than happy to have a play if that won't annoy you?
Personally I can build just fine with the default repo, so I'm not sure what's going wrong for you. Obviously reproducing things in a clean CI environment is a great way to go. Node v20.12.2 here.
I want to be clear that I chose Fedora because technically it's a better solution - I've run projects before where people requested things that node/npm images don't ship, and so it provides options for the future. I made those comments in the other issue about why I think Fedora would be a good choice, but I think we should chose based on best technical reasons, not feelings, so if we come up with reasons why alpine is technically better, let's do that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It took me about 15 minutes, but I have a clean build and working GitHub action - let's chat in #208 .
One more thing, look at this thread on X: I also thought, like you, that if you run nx run-many with production variables and The only one that can start with the next command is the front end. |
@jonathan-irvin as per recent discussions, does it make sense to close this in favour of us jointly working on #205 ? |
We need a good production Dockerfile. Dev can come later as the dev environment itself will need to be handled carefully, but sans-Docker, pnpm is a great candidate for establishing some standards in our environments.
Using pnpm for package management over npm
For one, this enforces the node version to be
20.9.0
That's right, no matter what command you use, pnpm will make sure its on the right version of docker.
Why was this change needed? (You can also link to an open issue here)
One of our chief problems is "it works on my machine".
I aim to fix that.
Aligns package versions using pnpm which is great for maintaining package integrity with it's lockfile system:
Dockerfile
(WIP) for building the Production image ofpostiz-app
using a multi-stage build.