-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docker build is broken #488: updating to Ubunto 22.04, and thus to PH…
…P 8.x
- Loading branch information
Showing
3 changed files
with
2 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:20.04 | ||
FROM ubuntu:22.04 | ||
|
||
LABEL maintainer="Péter Király <[email protected]>, Ákos Takács <[email protected]>, Jakob Voß <[email protected]>" | ||
|
||
|
@@ -75,11 +75,10 @@ RUN apt-get update \ | |
unzip \ | ||
composer \ | ||
gettext \ | ||
&& locale-gen en_GB.UTF-8 && locale-gen de_DE.UTF-8 && locale-gen pt_BR.UTF-8 \ | ||
&& locale-gen en_GB.UTF-8 && locale-gen de_DE.UTF-8 && locale-gen pt_BR.UTF-8 && locale-gen hu_HU.UTF-8 \ | ||
&& apt-get --assume-yes autoremove \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& cd /var/www/html/ \ | ||
# && curl -s -L https://github.com/pkiraly/qa-catalogue-web/archive/${QA_CATALOGUE_VERSION}.zip --output master.zip \ | ||
&& if [ "${QA_CATALOGUE_WEB_VERSION}" = "main" ]; then \ | ||
curl -s -L https://github.com/pkiraly/qa-catalogue-web/archive/refs/heads/main.zip --output master.zip ; \ | ||
elif [ "${QA_CATALOGUE_WEB_VERSION}" = "develop" ]; then \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
# Used to create the base image with `docker compose build app` | ||
|
||
version: '3' | ||
|
||
services: | ||
app: | ||
build: | ||
|