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

use Ubuntu "noble" as default version #103

Merged
merged 1 commit into from
May 4, 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_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
workflow_dispatch:

env:
DEFAULT_UBUNTU_DIST: jammy # for the default dist, no suffix to tag
DEFAULT_UBUNTU_DIST: noble # for the default dist, no suffix to tag
DOCKER_CLI_EXPERIMENTAL: enabled

jobs:
Expand Down
2 changes: 1 addition & 1 deletion desktop/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

ARG ubuntu_dist=jammy
ARG ubuntu_dist=noble

FROM ubuntu:${ubuntu_dist}
LABEL maintainer="OPENGIS.ch <info@opengis.ch>"
Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

ARG ubuntu_dist=jammy
ARG ubuntu_dist=noble

FROM ubuntu:${ubuntu_dist}
LABEL maintainer="OPENGIS.ch <info@opengis.ch>"
Expand Down
2 changes: 1 addition & 1 deletion server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ They are considered as NOT production ready.

## General information

The Docker image is built using *Ubuntu 20.04 (focal) and 22.04 (jammy)* and official QGIS DEBs from <https://qgis.org/>.
The Docker image is built using *Ubuntu 20.04 (focal), 22.04 (jammy) and 24.04 (noble)* and official QGIS DEBs from <https://qgis.org/>.
It includes *Nginx* and *Xvfb* and can be used as a standalone service (via HTTP TCP port 80) or as *FCGI* backend (via TCP port 9993).

## Requisites
Expand Down
Loading