Skip to content
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

Add notes on how to install addon packages in an extended container. #67

Closed
wants to merge 12 commits into from
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,15 @@ points declared in `setup.py` — otherwise they will not be loaded by Plone:
```

Also make sure that your add-ons do not use `zc3.autoinclude` in their `configure.zcml`
configuration file.
configuration file. Instead, list the packages to include in your add-on's
configure.zcml` explicitly:
Rudd-O marked this conversation as resolved.
Show resolved Hide resolved

```
Rudd-O marked this conversation as resolved.
Show resolved Hide resolved
...
Rudd-O marked this conversation as resolved.
Show resolved Hide resolved
<!-- -*- include dependencies / sync me with setup.py -*- -->
<include package="z3c.jbot" />
...
Rudd-O marked this conversation as resolved.
Show resolved Hide resolved
```

Now build your new image:

Expand Down