You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM opensuse/catatonit:0.2.0 as init
FROM nodejs
ADD package.json /app
# ... blah blah blahCOPY --from=init /catatonit /catatonit
ENTRYPOINT ["/catatonit"]
CMD ["node", "app.js"]
That way it's readily available as a compiled static binary for use in containers without having to manage the download & compilation myself. I could make part of a multi-stage build do that for me, but I think it would be better to have that done once rather than everyone having to correctly get the right calls to gcc et all.
It would be also very awesome if that pre-made image was compiled for a bunch of different architectures, like arm64.
The text was updated successfully, but these errors were encountered:
Using zypper may resolve to a different binary in the future, so this would cause reproducible builds issues, even if all FROM lines are pinned resolved and pinned to @sha256:.
I'm thinking something like:
That way it's readily available as a compiled static binary for use in containers without having to manage the download & compilation myself. I could make part of a multi-stage build do that for me, but I think it would be better to have that done once rather than everyone having to correctly get the right calls to
gcc
et all.It would be also very awesome if that pre-made image was compiled for a bunch of different architectures, like arm64.
The text was updated successfully, but these errors were encountered: