Skip to content
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

FIX: Update docker hub image with latest tomcat version #1529 #2635

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: 2
updates:
- package-ecosystem: "docker"
directory: "/package/docker"
schedule:
interval: "weekly"
## beside Docker dependencies it is also worth to check updates for GithubActions - this second block is optional to enable also. But at this moment, GA use no dependencies.
# - package-ecosystem: "github-actions"
# directory: "/"
# schedule:
# interval: "monthly"
# groups:
# GitHubActions-dependencies:
# patterns:
# - "*"
2 changes: 1 addition & 1 deletion package/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN perl -pi -e 's(\${buildNumber})('${GIT_REVISION}')' src/main/resources/appli
mvn -DskipTests install && \
rm target/*.war && mv target/ipt-* target/ipt

FROM tomcat:9.0-jdk17
FROM tomcat:9.0-jdk17@sha256:c7f5e6a8c40fdba9804f3c49bded2d2750c01d36380ecad872fb54c8182b544b
LABEL maintainers="Matthew Blissett <[email protected]>"

ARG IPT_NAME=ROOT
Expand Down