Skip to content

Commit 1ab9dfc

Browse files
authored
Merge pull request #4557 from jjimenezshaw/update-docker-24.04
Update Dockerfile to ubuntu:24.04
2 parents 27dfb11 + 5b926b8 commit 1ab9dfc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
##
22
# OSGeo/PROJ
33

4-
FROM ubuntu:22.04 AS builder
4+
FROM ubuntu:24.04 AS builder
55

66
LABEL maintainer="Howard Butler <[email protected]>"
77

@@ -23,13 +23,13 @@ RUN cmake --build _build -j $(nproc)
2323
RUN cmake --install _build
2424
RUN rm -rfv _build
2525

26-
FROM ubuntu:22.04 AS runner
26+
FROM ubuntu:24.04 AS runner
2727

2828
RUN date
2929

3030
RUN apt-get update \
3131
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
32-
libsqlite3-0 libtiff5 libcurl4 libcurl3-gnutls \
32+
libsqlite3-0 libtiff6 libcurl4 libcurl3-gnutls \
3333
wget ca-certificates \
3434
&& apt-get clean && rm -rf /var/lib/apt/lists/*
3535

0 commit comments

Comments
 (0)