Skip to content

Commit

Permalink
Merge branch 'release/v1.23.2-8'
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudgge authored and cesmarvin committed Nov 7, 2023
2 parents 89c149b + e0a863f commit 5c95d11
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v1.23.2-8] - 2023-11-07
### Changed
- Update `ces-about` to `0.4.0` (#80)
- Use additional routes provided by `ces-about` (#80)

## [v1.23.2-7] - 2023-07-10
### Changed
- [#78] replaced all references to myCloudogu with references to the cloudogu platform
Expand Down
12 changes: 7 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ ENV NGINX_VERSION=1.23.2 \
CES_CONFD_TAR_SHA256="365a4033e80af6953d5b6513296a828dfd772a6640533bb51dd9abd34a1e53e8" \
WARP_MENU_VERSION=1.7.3 \
WARP_MENU_TAR_SHA256="b3ed4b50b1b9a739a4430d88975b5e3030c5e542c0739ed6b72d7eb8fd9a7b18" \
CES_ABOUT_VERSION=0.2.2 \
CES_ABOUT_TAR_SHA256="9926649be62d8d4667b2e7e6d1e3a00ebec1c4bbc5b80a0e830f7be21219d496" \
CES_ABOUT_VERSION="0.4.0" \
CES_ABOUT_TAR_SHA256="553624d9dec8f2d7158014680c983e9b431d85d8c7fd59b5f96a1061863cdbf6" \
CES_THEME_VERSION=0.7.0 \
CES_THEME_TAR_SHA256="d3c8ba654cdaccff8fa3202f3958ac0c61156fb25a288d6008354fae75227941"

Expand Down Expand Up @@ -40,10 +40,12 @@ RUN wget --progress=bar:force:noscroll -O "/tmp/ces-confd-${CES_CONFD_VERSION}.t
&& mkdir -p /build/var/www/customhtml

# install ces-about page
RUN wget --progress=bar:force:noscroll -O /tmp/ces-about-v${CES_ABOUT_VERSION}.tar.gz https://github.com/cloudogu/ces-about/releases/download/v${CES_ABOUT_VERSION}/ces-about-v${CES_ABOUT_VERSION}.tar.gz \
RUN wget --progress=bar:force:noscroll -O /tmp/ces-about-v${CES_ABOUT_VERSION}.tar.gz https://github.com/cloudogu/ces-about/releases/download/v${CES_ABOUT_VERSION}/ces-about_v${CES_ABOUT_VERSION}.tar.gz \
&& echo "${CES_ABOUT_TAR_SHA256} */tmp/ces-about-v${CES_ABOUT_VERSION}.tar.gz" | sha256sum -c - \
&& tar -xzvf /tmp/ces-about-v${CES_ABOUT_VERSION}.tar.gz -C /build/var/www/html \
&& sed -i 's@base href=".*"@base href="/info/"@' /build/var/www/html/info/index.html
&& mkdir -p /build/etc/nginx/include.d/ \
&& cp /build/var/www/html/routes/ces-about-routes.conf /build/etc/nginx/include.d/ \
&& rm -rf /build/var/www/html/routes

# install warp menu
RUN wget --progress=bar:force:noscroll -O /tmp/warp.zip https://github.com/cloudogu/warp-menu/releases/download/v${WARP_MENU_VERSION}/warp-v${WARP_MENU_VERSION}.zip \
Expand All @@ -59,7 +61,7 @@ RUN wget --progress=bar:force:noscroll -O /tmp/theme.zip https://github.com/clou
FROM registry.cloudogu.com/official/base:3.17.3-2
LABEL maintainer="[email protected]" \
NAME="official/nginx" \
VERSION="1.23.2-7"
VERSION="1.23.2-8"

ENV CES_MAINTENANCE_MODE=false

Expand Down
2 changes: 1 addition & 1 deletion dogu.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Name": "official/nginx",
"Version": "1.23.2-7",
"Version": "1.23.2-8",
"DisplayName": "Nginx",
"Description": "Nginx WebServer.",
"Logo": "https://cloudogu.com/images/dogus/nginx.png",
Expand Down
6 changes: 2 additions & 4 deletions resources/etc/nginx/include.d/info.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@
location /info {
root /var/www/html;

# fallback to index.html if file could not be found
# required for angular navigation
try_files $uri $uri/ /info/index.html;
}
include /etc/nginx/include.d/ces-about-routes.conf;
}

0 comments on commit 5c95d11

Please sign in to comment.