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 tomcat Dockerfile contains the following in line 8:
COPY webapps/dockersetup.war /usr/local/tomcat/webapps/
This prevented a proper build -- since under webapps there is only a sample.war file. Changing to the following made it work:
webapps
sample.war
COPY webapps/sample.war /usr/local/tomcat/webapps/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The tomcat Dockerfile contains the following in line 8:
This prevented a proper build -- since under
webapps
there is only asample.war
file. Changing to the following made it work:The text was updated successfully, but these errors were encountered: