-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Support WARs. #431
Comments
Is there a timeline for this? |
@Xiangfeid We are actively working on this issue and welcome input for solutions from anyone in the community. We expect a solution to be provided by the @chanseokoh will be able to guide the conversation and design |
I have issue in "comand and tomcat war support #646" |
For documentation after some preliminary research:
<packaging>war</packaging>
<version>0.1.0-SNAPSHOT</version>
<groupId>com.example</groupId>
<artifactId>war-example</artifactId>
The app will be available at There are other images like the official Jetty Docker image and the Google-maintained Jetty runtime image, but I think we'll stick to the distroless Jetty. I hope it enabled all the typical web app support like JSP and JSTL. |
So we could put Updated: oh we should do the same -SNAPSHOT separation too. |
Yep! Should be fairly simple to write an adapter for this war format once #516 is merged. |
What if you have a thin WAR and need a complete application server? Currently I do this to get a complete MicroProfile stack: FROM payara/micro
ARG WAR
COPY $WAR $DEPLOY_DIR |
@tofflos, are you wondering about provided deps? We do not include provided deps so if MicroProfile is providing them for you that's fine. In the case of the app server, you would still pull |
gretty is one of widespread gradle plugins for war app development and jib integration would be great. |
@CyrilleH Thanks for sharing this! |
Hi everyone, version |
Hi @coollog thank you very much! Is this feature documented please, or is there an example project for this? |
Thumbs up if you would like Jib to be able to containerize applications normally packaged as WARs.
The text was updated successfully, but these errors were encountered: