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
Currently both, standaloneand ui-only will build the ui from scratch, meaning downloading node_modules and invoking npm run build. Can the standalone build reuse the outputs of ui-only easily? Is that compatible with the GitHub workflow approach?
It'd be cool to just define something like this in the Dockerfile for standalone:
FROM ghcr.io/joinmarket-webui/joinmarket-webui-dev-ui-only:vX.X.X AS ui-only
COPY --from=ui-only /app /app
The text was updated successfully, but these errors were encountered:
Currently both,
standalone
andui-only
will build the ui from scratch, meaning downloadingnode_modules
and invokingnpm run build
. Can thestandalone
build reuse the outputs ofui-only
easily? Is that compatible with the GitHub workflow approach?It'd be cool to just define something like this in the Dockerfile for
standalone
:The text was updated successfully, but these errors were encountered: