We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The Dockerfile checks for zip files with [ -f *zip ]. If * is expanded to more that one file, it becomes invalid syntax.
[ -f *zip ]
#167 fixes this by using ls.
ls
This screenshots compare contents of two example images. Both built with two plugins ZIPs in place:
ls resources/geoserver-plugins/ geoserver-2.26.2-mbstyle-plugin.zip geoserver-2.26-SNAPSHOT-mbtiles-store-plugin.zip
Built with docker build --build-arg GEOSERVER_WEBAPP_SRC=./geoserver.war --build-arg PLUG_IN_PATHS=./resources/geoserver-plugins --no-cache .
docker build --build-arg GEOSERVER_WEBAPP_SRC=./geoserver.war --build-arg PLUG_IN_PATHS=./resources/geoserver-plugins --no-cache .
Left: built on branch master / Right: built on branch fix-many-plugins-zips
master
fix-many-plugins-zips
The text was updated successfully, but these errors were encountered:
camuffo
Successfully merging a pull request may close this issue.
The Dockerfile checks for zip files with
[ -f *zip ]
.If * is expanded to more that one file, it becomes invalid syntax.
#167 fixes this by using
ls
.This screenshots compare contents of two example images.
Both built with two plugins ZIPs in place:
Built with
docker build --build-arg GEOSERVER_WEBAPP_SRC=./geoserver.war --build-arg PLUG_IN_PATHS=./resources/geoserver-plugins --no-cache .
Left: built on branch

master
/ Right: built on branchfix-many-plugins-zips
The text was updated successfully, but these errors were encountered: