1
- FROM ubuntu:bionic -20210325
1
+ FROM ubuntu:focal -20210325
2
2
3
3
ARG VERSION=13.10.2
4
4
@@ -25,19 +25,20 @@ ENV GITLAB_INSTALL_DIR="${GITLAB_HOME}/gitlab" \
25
25
RUN apt-get update \
26
26
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
27
27
wget ca-certificates apt-transport-https gnupg2 \
28
+ && apt-get upgrade -y \
28
29
&& rm -rf /var/lib/apt/lists/*
29
30
30
31
RUN set -ex && \
31
- apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv E1DD270288B4E6030699E45FA1715D88E1DF1F24 \
32
- && echo "deb http://ppa.launchpad.net/git-core/ppa/ubuntu bionic main" >> /etc/apt/sources.list \
32
+ apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv E1DD270288B4E6030699E45FA1715D88E1DF1F24 \
33
+ && echo "deb http://ppa.launchpad.net/git-core/ppa/ubuntu focal main" >> /etc/apt/sources.list \
33
34
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 80F70E11F0F0D5F10CB20E62F5DA5F09C3173AA6 \
34
- && echo "deb http://ppa.launchpad.net/brightbox/ruby-ng/ubuntu bionic main" >> /etc/apt/sources.list \
35
+ && echo "deb http://ppa.launchpad.net/brightbox/ruby-ng/ubuntu focal main" >> /etc/apt/sources.list \
35
36
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 8B3981E7A6852F782CC4951600A6F0A3C300EE8C \
36
- && echo "deb http://ppa.launchpad.net/nginx/stable/ubuntu bionic main" >> /etc/apt/sources.list \
37
+ && echo "deb http://ppa.launchpad.net/nginx/stable/ubuntu focal main" >> /etc/apt/sources.list \
37
38
&& wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
38
- && echo 'deb http://apt.postgresql.org/pub/repos/apt/ bionic -pgdg main' > /etc/apt/sources.list.d/pgdg.list \
39
+ && echo 'deb http://apt.postgresql.org/pub/repos/apt/ focal -pgdg main' > /etc/apt/sources.list.d/pgdg.list \
39
40
&& wget --quiet -O - https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - \
40
- && echo 'deb https://deb.nodesource.com/node_12.x bionic main' > /etc/apt/sources.list.d/nodesource.list \
41
+ && echo 'deb https://deb.nodesource.com/node_12.x focal main' > /etc/apt/sources.list.d/nodesource.list \
41
42
&& wget --quiet -O - https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
42
43
&& echo 'deb https://dl.yarnpkg.com/debian/ stable main' > /etc/apt/sources.list.d/yarn.list \
43
44
&& set -ex \
@@ -46,9 +47,9 @@ RUN set -ex && \
46
47
sudo supervisor logrotate locales curl \
47
48
nginx openssh-server postgresql-client-12 postgresql-contrib-12 redis-tools \
48
49
git-core ruby${RUBY_VERSION} python3 python3-docutils nodejs yarn gettext-base graphicsmagick \
49
- libpq5 zlib1g libyaml-0-2 libssl1.0.0 \
50
- libgdbm5 libreadline7 libncurses5 libffi6 \
51
- libxml2 libxslt1.1 libcurl4 libicu60 libre2-dev tzdata unzip libimage-exiftool-perl \
50
+ libpq5 zlib1g libyaml-0-2 libssl1.1 \
51
+ libgdbm6 libreadline8 libncurses5 libffi7 \
52
+ libxml2 libxslt1.1 libcurl4 libicu66 libre2-dev tzdata unzip libimage-exiftool-perl \
52
53
libmagic1 \
53
54
&& update-locale LANG=C.UTF-8 LC_MESSAGES=POSIX \
54
55
&& locale-gen en_US.UTF-8 \
0 commit comments