Skip to content

Commit b959725

Browse files
committed
Change base image from focal to jammy
1 parent 0b94553 commit b959725

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

Dockerfile

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:focal-20241011
1+
FROM ubuntu:jammy-20240911.1
22

33
ARG VERSION=17.7.0
44

@@ -32,11 +32,11 @@ RUN apt-get update \
3232

3333
RUN set -ex && \
3434
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv E1DD270288B4E6030699E45FA1715D88E1DF1F24 \
35-
&& echo "deb http://ppa.launchpad.net/git-core/ppa/ubuntu focal main" >> /etc/apt/sources.list \
36-
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 8B3981E7A6852F782CC4951600A6F0A3C300EE8C \
37-
&& echo "deb http://ppa.launchpad.net/nginx/stable/ubuntu focal main" >> /etc/apt/sources.list \
35+
&& echo "deb https://ppa.launchpadcontent.net/git-core/ppa/ubuntu jammy main" >> /etc/apt/sources.list \
36+
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv ABF5BD827BD9BF62 \
37+
&& echo "deb http://nginx.org/packages/ubuntu/ jammy nginx" >> /etc/apt/sources.list \
3838
&& wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
39-
&& echo 'deb http://apt.postgresql.org/pub/repos/apt/ focal-pgdg main' > /etc/apt/sources.list.d/pgdg.list \
39+
&& echo 'deb http://apt.postgresql.org/pub/repos/apt/ jammy-pgdg main' > /etc/apt/sources.list.d/pgdg.list \
4040
&& wget --quiet -O - https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | apt-key add - \
4141
&& echo 'deb https://deb.nodesource.com/node_20.x nodistro main' > /etc/apt/sources.list.d/nodesource.list \
4242
&& wget --quiet -O - https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
@@ -46,12 +46,13 @@ RUN set -ex && \
4646
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
4747
sudo supervisor logrotate locales curl \
4848
nginx openssh-server postgresql-contrib redis-tools \
49-
postgresql-client-13 postgresql-client-14 postgresql-client-15 postgresql-client-16 \
49+
postgresql-client-13 postgresql-client-14 postgresql-client-15 postgresql-client-16 postgresql-client-17 \
5050
python3 python3-docutils nodejs yarn gettext-base graphicsmagick \
51-
libpq5 zlib1g libyaml-0-2 libssl1.1 \
52-
libgdbm6 libreadline8 libncurses5 libffi7 \
53-
libxml2 libxslt1.1 libcurl4 libicu66 libre2-dev tzdata unzip libimage-exiftool-perl \
54-
libmagic1 \
51+
libpq5 zlib1g libyaml-dev libssl-dev libgdbm-dev libre2-dev \
52+
libreadline-dev libncurses5-dev libffi-dev curl openssh-server libxml2-dev libxslt-dev \
53+
libcurl4-openssl-dev libicu-dev libkrb5-dev rsync python3-docutils pkg-config cmake \
54+
runit-systemd \
55+
tzdata unzip libimage-exiftool-perl libmagic1 \
5556
&& update-locale LANG=C.UTF-8 LC_MESSAGES=POSIX \
5657
&& locale-gen en_US.UTF-8 \
5758
&& DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales \

0 commit comments

Comments
 (0)