Skip to content

Commit c406795

Browse files
committed
..
1 parent 716350a commit c406795

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

Taskfile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tasks:
66
- docker buildx create --name multiarch --bootstrap --use
77
docker:build:
88
env:
9-
VERSION: 5.1.17
9+
VERSION: 5.1.18
1010
cmds:
1111
- docker build --platform linux/amd64,linux/arm64 --builder=multiarch -t docker.io/tanjim/mautic:install-$VERSION --target=install --push .
1212
- docker build --platform linux/amd64,linux/arm64 --builder=multiarch -t docker.io/tanjim/mautic:console-$VERSION --target=console --push .

charts/mautic/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type: application
1818
# This is the chart version. This version number should be incremented each time you make changes
1919
# to the chart and its templates, including the app version.
2020
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21-
version: 5.1.46
21+
version: 5.1.47
2222

2323
# This is the version number of the application being deployed. This version number should be
2424
# incremented each time you make changes to the application. Versions are not expected to

charts/mautic/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ mautic:
55
image:
66
repository: docker.io/tanjim/mautic
77
pullPolicy: IfNotPresent
8-
tag: "5.1.17"
8+
tag: "5.1.18"
99

1010
# existingConfigMap: ""
1111
# ignore the following values if existingConfigMap is set

dockerfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
3535
nodejs \
3636
npm
3737

38-
# Clean up apt-get
38+
# Clean up
3939
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
4040

4141
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
5656
WORKDIR /opt/mautic
5757
RUN COMPOSER_ALLOW_SUPERUSER=1 COMPOSER_PROCESS_TIMEOUT=10000 composer require pabloveintimilla/mautic-amazon-ses
5858

59-
# Clean up node_modules
59+
# Clean up
6060
RUN rm -rf var/cache/js && \
6161
find node_modules -mindepth 1 -maxdepth 1 -not \( -name 'jquery' -or -name 'vimeo-froogaloop2' -or -name 'remixicon' \) | xargs rm -rf
6262
RUN mv node_modules docroot/
6363

64-
RUN mv /opt/mautic /var/www/html
64+
RUN cp -a /opt/mautic/. /var/www/html/
6565
WORKDIR /var/www/html
6666

67+
# Clean up
68+
RUN rm -rf /opt/mautic
69+
6770
# Configure PHP
6871
ENV PHP_INI_VALUE_DATE_TIMEZONE=UTC \
6972
PHP_INI_VALUE_UPLOAD_MAX_FILESIZE=512M \

0 commit comments

Comments
 (0)