-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from camptocamp/minor-fix
Never push on latest branch, fix delete backport images
- Loading branch information
Showing
6 changed files
with
29 additions
and
20 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: docker | ||
schedule: | ||
interval: weekly | ||
time: '02:00' |
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,9 +1,7 @@ | ||
--- | ||
|
||
name: Clean docker hub tags | ||
|
||
on: | ||
delete | ||
on: delete | ||
|
||
jobs: | ||
clean: | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,6 @@ FROM osgeo/gdal:ubuntu-small-3.1.1 as builder | |
LABEL maintainer="[email protected]" | ||
|
||
RUN apt update && \ | ||
apt upgrade --assume-yes && \ | ||
apt install --assume-yes --no-install-recommends apt-utils software-properties-common && \ | ||
apt autoremove --assume-yes software-properties-common && \ | ||
LC_ALL=C DEBIAN_FRONTEND=noninteractive apt install --assume-yes --no-install-recommends cmake gcc \ | ||
|
@@ -68,22 +67,23 @@ ENV APACHE_CONFDIR=/etc/apache2 \ | |
APACHE_LOG_DIR=/var/log/apache2 \ | ||
LANG=C.UTF-8 | ||
|
||
RUN apt-get update && \ | ||
apt-get install --assume-yes --no-install-recommends apt-utils software-properties-common && \ | ||
RUN apt update && \ | ||
apt upgrade --assume-yes && \ | ||
apt install --assume-yes --no-install-recommends apt-utils software-properties-common && \ | ||
apt autoremove --assume-yes software-properties-common && \ | ||
apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install --assume-yes --no-install-recommends \ | ||
apt update && \ | ||
DEBIAN_FRONTEND=noninteractive apt install --assume-yes --no-install-recommends \ | ||
libfcgi libgslcblas0 libqca-qt5-2 libqca-qt5-2-plugins libzip5 \ | ||
libqt5opengl5 libqt5sql5-sqlite libqt5concurrent5 libqt5positioning5 libqt5script5 \ | ||
libqt5webkit5 libqwt-qt5-6 libspatialindex6 libspatialite7 libsqlite3-0 libqt5keychain1 \ | ||
python3 python3-pip python3-setuptools python3-pyqt5 python3-owslib python3-jinja2 python3-pygments \ | ||
python3-pyqt5.qtsql PyQt5.QtSvg \ | ||
python3-pyqt5.qtsql \ | ||
spawn-fcgi xauth xfonts-100dpi xfonts-75dpi xfonts-base xfonts-scalable xvfb \ | ||
apache2 libapache2-mod-fcgid \ | ||
python3-pyqt5.qsci python3-pil python3-psycopg2 python3-shapely libpython3-dev \ | ||
libqt5serialport5 libqt5quickwidgets5 libexiv2-27 libprotobuf17 libprotobuf-lite17 \ | ||
libgsl23 && \ | ||
apt-get clean && \ | ||
apt clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# Be able to install font as nonroot | ||
|
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