Skip to content

Commit

Permalink
feat: use ubuntu lts (jammy 22.04)
Browse files Browse the repository at this point in the history
  • Loading branch information
qkdreyer committed Dec 7, 2022
1 parent bb381c3 commit ceb9897
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.slim.apache
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#syntax=docker/dockerfile-upstream:1
# DO NOT EDIT THIS FILE : Make yours changes in /utils/Dockerfile.*.blueprint)
FROM ubuntu:20.04
FROM ubuntu:22.04
LABEL authors="Julien Neuhart <[email protected]>, David Négrier <[email protected]>"
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down Expand Up @@ -33,7 +33,7 @@ ENV PHP_VERSION=${PHP_VERSION}
# Install php an other packages
RUN apt-get update \
&& apt-get install -y --no-install-recommends gnupg \
&& echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu focal main" > /etc/apt/sources.list.d/ondrej-php.list \
&& echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu jammy main" > /etc/apt/sources.list.d/ondrej-php.list \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4F4EA0AAE5267A6C \
&& apt-get update \
&& apt-get upgrade -y \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.slim.cli
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#syntax=docker/dockerfile-upstream:1
# DO NOT EDIT THIS FILE : Make yours changes in /utils/Dockerfile.*.blueprint)
FROM ubuntu:20.04
FROM ubuntu:22.04
LABEL authors="Julien Neuhart <[email protected]>, David Négrier <[email protected]>"
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down Expand Up @@ -33,7 +33,7 @@ ENV PHP_VERSION=${PHP_VERSION}
# Install php an other packages
RUN apt-get update \
&& apt-get install -y --no-install-recommends gnupg \
&& echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu focal main" > /etc/apt/sources.list.d/ondrej-php.list \
&& echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu jammy main" > /etc/apt/sources.list.d/ondrej-php.list \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4F4EA0AAE5267A6C \
&& apt-get update \
&& apt-get upgrade -y \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.slim.fpm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#syntax=docker/dockerfile-upstream:1
# DO NOT EDIT THIS FILE : Make yours changes in /utils/Dockerfile.*.blueprint)
FROM ubuntu:20.04
FROM ubuntu:22.04
LABEL authors="Julien Neuhart <[email protected]>, David Négrier <[email protected]>"
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down Expand Up @@ -33,7 +33,7 @@ ENV PHP_VERSION=${PHP_VERSION}
# Install php an other packages
RUN apt-get update \
&& apt-get install -y --no-install-recommends gnupg \
&& echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu focal main" > /etc/apt/sources.list.d/ondrej-php.list \
&& echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu jammy main" > /etc/apt/sources.list.d/ondrej-php.list \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4F4EA0AAE5267A6C \
&& apt-get update \
&& apt-get upgrade -y \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ blueprint: ## Generate all blueprints file
test-latest: test-8.1 ## Test the latest build only

_test-prerequisites: blueprint
docker pull ubuntu:20.04
docker pull ubuntu:22.04

test-quick: ## Test 8.0 and 8.1 quickly
VERSION=8.0 VARIANT=cli $(MAKE) _test-version-quick
Expand Down
4 changes: 2 additions & 2 deletions utils/Dockerfile.slim.blueprint
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#syntax=docker/dockerfile-upstream:1
FROM ubuntu:20.04
FROM ubuntu:22.04
LABEL authors="Julien Neuhart <[email protected]>, David Négrier <[email protected]>"
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down Expand Up @@ -32,7 +32,7 @@ ENV PHP_VERSION=${PHP_VERSION}
# Install php an other packages
RUN apt-get update \
&& apt-get install -y --no-install-recommends gnupg \
&& echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu focal main" > /etc/apt/sources.list.d/ondrej-php.list \
&& echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu jammy main" > /etc/apt/sources.list.d/ondrej-php.list \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4F4EA0AAE5267A6C \
&& apt-get update \
&& apt-get upgrade -y \
Expand Down

0 comments on commit ceb9897

Please sign in to comment.