File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 6
6
- docker buildx create --name multiarch --bootstrap --use
7
7
docker:build :
8
8
env :
9
- VERSION : 5.1.17
9
+ VERSION : 5.1.18
10
10
cmds :
11
11
- docker build --platform linux/amd64,linux/arm64 --builder=multiarch -t docker.io/tanjim/mautic:install-$VERSION --target=install --push .
12
12
- docker build --platform linux/amd64,linux/arm64 --builder=multiarch -t docker.io/tanjim/mautic:console-$VERSION --target=console --push .
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ type: application
18
18
# This is the chart version. This version number should be incremented each time you make changes
19
19
# to the chart and its templates, including the app version.
20
20
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21
- version : 5.1.46
21
+ version : 5.1.47
22
22
23
23
# This is the version number of the application being deployed. This version number should be
24
24
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 5
5
image :
6
6
repository : docker.io/tanjim/mautic
7
7
pullPolicy : IfNotPresent
8
- tag : " 5.1.17 "
8
+ tag : " 5.1.18 "
9
9
10
10
# existingConfigMap: ""
11
11
# ignore the following values if existingConfigMap is set
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
35
35
nodejs \
36
36
npm
37
37
38
- # Clean up apt-get
38
+ # Clean up
39
39
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
40
40
41
41
RUN docker-php-ext-configure gd --with-freetype --with-jpeg \
@@ -56,14 +56,17 @@ RUN COMPOSER_ALLOW_SUPERUSER=1 COMPOSER_PROCESS_TIMEOUT=10000 composer create-pr
56
56
WORKDIR /opt/mautic
57
57
RUN COMPOSER_ALLOW_SUPERUSER=1 COMPOSER_PROCESS_TIMEOUT=10000 composer require pabloveintimilla/mautic-amazon-ses
58
58
59
- # Clean up node_modules
59
+ # Clean up
60
60
RUN rm -rf var/cache/js && \
61
61
find node_modules -mindepth 1 -maxdepth 1 -not \( -name 'jquery' -or -name 'vimeo-froogaloop2' -or -name 'remixicon' \) | xargs rm -rf
62
62
RUN mv node_modules docroot/
63
63
64
- RUN mv /opt/mautic /var/www/html
64
+ RUN cp -a /opt/mautic/. /var/www/html/
65
65
WORKDIR /var/www/html
66
66
67
+ # Clean up
68
+ RUN rm -rf /opt/mautic
69
+
67
70
# Configure PHP
68
71
ENV PHP_INI_VALUE_DATE_TIMEZONE=UTC \
69
72
PHP_INI_VALUE_UPLOAD_MAX_FILESIZE=512M \
You can’t perform that action at this time.
0 commit comments