-
Notifications
You must be signed in to change notification settings - Fork 23
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
docker - provide unzipped war #664
Conversation
FROM alpine:latest as alpine | ||
RUN apk --update add unzip && rm -rf /var/cache/apk/* | ||
WORKDIR /tmp | ||
COPY docker/MapStore-*.war mapstore.war |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note to the reviewer: the war file is provided by
cp scratch/mapstore-${{ github.sha }}.war docker/MapStore-${{ steps.version.outputs.VERSION }}.war |
* docker - provide unzipped war * take into account edevos review
* docker - provide unzipped war * take into account edevos review
@fvanderbiest , @tdipisa told me that this pull request has broken their CI/CD. Could you please, both, share here how to fix this ? |
Maybe @tdipisa could send the errors given by his CI/CD so that we can understand what went wrong? |
Hi all, the reason why I didn't notify this here is because we still have to check what's going wrong and if we can fix this autonomously. I will let you know if needed. Don't worry. Thank you so much. |
geOrchestra docker images are provided with unzipped webapps.
The current PR aligns MapStore-georchestra docker image with the other ones.
Example direct benefit - custom themes are easier to implement using docker:
A multi stage build is used to reduce the final image size - it does not have to embed the original war file.