We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb51e3d commit 6356dc5Copy full SHA for 6356dc5
1 file changed
Dockerfile
@@ -15,7 +15,7 @@ RUN <<EOT
15
python -m venv /app
16
/app/bin/pip install -U "pip==${PIP_VERSION}"
17
/app/bin/pip install Plone plone.volto ${EXTRA_PACKAGES} -c https://dist.plone.org/release/$PLONE_VERSION/constraints.txt ${PIP_PARAMS}
18
- find /app \( -type f -a -name '*.pyc' -o -name '*.pyo' \) -exec rm -rf '{}' +
+ find . -name *.py -and -not -path */*skins/* -and -not -name *_2.py -and -not -name badsyntax.py -exec ./bin/python -m compileall {} +
19
EOT
20
21
COPY --chown=500:500 /skeleton/etc /app/etc
0 commit comments