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

Updates gh action building docker image to use release version 1.3.0 #128

Merged
merged 1 commit into from
Aug 16, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
context: ./docker/1.3
platforms: linux/amd64,linux/arm64
push: true
tags: deegree/deegree-ogcapi:1.3,deegree/deegree-ogcapi:1.3-SNAPSHOT,deegree/deegree-ogcapi:latest
tags: deegree/deegree-ogcapi:1.3,deegree/deegree-ogcapi:1.3.0,deegree/deegree-ogcapi:latest
4 changes: 2 additions & 2 deletions docker/1.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is available under the following license:
# under LGPL 2.1 (LICENSE.TXT) Copyright 2020 Torsten Friebe <tfr@users.sourceforge.net>
FROM tomcat:9.0-jdk11-temurin-jammy
FROM tomcat:9-jdk11

ENV LANG en_US.UTF-8

Expand All @@ -15,7 +15,7 @@ LABEL org.opencontainers.image.created=$BUILD_DATE \
LABEL maintainer="deegree TMC <tmc@deegree.org>"

# set deegree OAF version
ENV DEEGREE_OAF_VERSION=1.3-SNAPSHOT
ENV DEEGREE_OAF_VERSION=1.3.0

# tomcat port
EXPOSE 8080
Expand Down