Skip to content

Commit

Permalink
Updated versions to match Galette 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
grasdk committed Oct 25, 2024
1 parent 87eabc8 commit 2b6f0fb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ Follow the instructions above, but add any or both of these build args to the bu
--build-arg PLUGIN_MAPS_VERSION=dev \
--build-arg PLUGIN_OBJECTSLEND_VERSION=dev \
--build-arg PLUGIN_PAYPAL_VERSION=dev \
--build-arg PLUGIN_ACTIVITIES_VERSION=dev \
--load .
```
Expand Down
18 changes: 12 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG PHP_VERSION=8.2
# Using PHP-Apache image
FROM php:${PHP_VERSION}-apache
ARG PHP_VERSION
ARG GALETTE_VERSION=1.1.3
ARG GALETTE_VERSION=1.1.4
ARG GALETTE_RELEASE=galette-${GALETTE_VERSION}

# Maintained by GrasDK for Galette community
Expand All @@ -13,12 +13,13 @@ LABEL maintainer="GrasDK"


## Plugins versions
ARG PLUGIN_AUTO_VERSION="2.1.1"
ARG PLUGIN_EVENTS_VERSION="2.1.2"
ARG PLUGIN_AUTO_VERSION="2.1.3"
ARG PLUGIN_EVENTS_VERSION="2.1.3"
ARG PLUGIN_FULLCARD_VERSION="2.1.0"
ARG PLUGIN_MAPS_VERSION="2.1.0"
ARG PLUGIN_OBJECTSLEND_VERSION="2.1.1"
ARG PLUGIN_PAYPAL_VERSION="2.1.1"
ARG PLUGIN_MAPS_VERSION="2.1.2"
ARG PLUGIN_OBJECTSLEND_VERSION="2.1.2"
ARG PLUGIN_PAYPAL_VERSION="2.1.2"
ARG PLUGIN_ACTIVITIES_VERSION="1.0.4"

LABEL description="PHP $PHP_VERSION / Apache 2 / $GALETTE_RELEASE"

Expand Down Expand Up @@ -109,6 +110,11 @@ RUN tar jxvf galette-plugin-objectslend-${PLUGIN_OBJECTSLEND_VERSION}.tar.bz2; r
RUN wget --progress=dot:giga ${PLUGIN_PACKAGE_URL}galette-plugin-paypal-${PLUGIN_PAYPAL_VERSION}.tar.bz2
RUN tar jxvf galette-plugin-paypal-${PLUGIN_PAYPAL_VERSION}.tar.bz2; rm galette-plugin-paypal-${PLUGIN_PAYPAL_VERSION}.tar.bz2; mv galette-plugin-paypal-${PLUGIN_PAYPAL_VERSION} plugin-paypal

### Activities
RUN wget --progress=dot:giga ${PLUGIN_PACKAGE_URL}galette-plugin-activities-${PLUGIN_ACTIVITIES_VERSION}.tar.bz2
RUN tar jxvf galette-plugin-activities-${PLUGIN_ACTIVITIES_VERSION}.tar.bz2; rm galette-plugin-activities-${PLUGIN_ACTIVITIES_VERSION}.tar.bz2; mv galette-plugin-activities-${PLUGIN_ACTIVITIES_VERSION} plugin-activities


# CRON Auto-Reminder
## Copy galette-cron file to the cron.d directory
COPY galette-cron /etc/cron.d/galette-cron
Expand Down

0 comments on commit 2b6f0fb

Please sign in to comment.