Skip to content

Commit edc4dc5

Browse files
authored
docker image: Change base to Ubuntu 22.04 LTS (jammy) (#1135)
Done to upgrade from CMake 3.16.3 to 3.22.1. CMake 3.21 or newer is needed to build the Qt 6.4.1 sources with emscripten. Also update to libidn12 to resolve an "Unable to locate package libidn11" error.
1 parent 8a1268a commit edc4dc5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:focal AS stage_build
1+
FROM ubuntu:jammy AS stage_build
22

33
ARG EMSCRIPTEN_VERSION=tot
44
ENV EMSDK /emsdk
@@ -56,7 +56,7 @@ RUN echo "## Aggressive optimization: Remove debug symbols" \
5656
# -------------------------------- STAGE DEPLOY --------------------------------
5757
# ------------------------------------------------------------------------------
5858

59-
FROM ubuntu:focal AS stage_deploy
59+
FROM ubuntu:jammy AS stage_deploy
6060

6161
COPY --from=stage_build /emsdk /emsdk
6262

@@ -105,7 +105,7 @@ RUN echo "## Update and install packages" \
105105
build-essential \
106106
make \
107107
ant \
108-
libidn11 \
108+
libidn12 \
109109
cmake \
110110
openjdk-11-jre-headless \
111111
# Standard Cleanup on Debian images

0 commit comments

Comments
 (0)