6 Commits

Author SHA1 Message Date
Gitea Actions
380422d230 Update manifest version to 7.0.0 [▶️] 2025-12-10 01:33:40 +00:00
e5ea38c973 refactor to php composer
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 23m5s
2025-12-09 22:33:15 -03:00
Gitea Actions
5643e77f0f Update manifest version to 6.1.0 [▶️] 2025-12-10 00:18:53 +00:00
1e95a3cf07 phar
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 22m31s
2025-12-09 21:18:18 -03:00
Gitea Actions
e6779edec7 Update AWS SDK PHAR [▶️] 2025-12-10 00:08:02 +00:00
1f18de7750 phar
All checks were successful
Build, Push, Publish / Build & Release (push) Successful in 9s
2025-12-09 21:06:35 -03:00
3 changed files with 7 additions and 5 deletions

View File

@@ -4,7 +4,7 @@ COPY composer.json composer.json
# COPY composer.lock composer.lock # No lock file yet # COPY composer.lock composer.lock # No lock file yet
COPY auth_keycloak.php auth_keycloak.php COPY auth_keycloak.php auth_keycloak.php
COPY s3_client.php s3_client.php COPY s3_client.php s3_client.php
RUN composer install --no-dev --ignore-platform-reqs --no-scripts --prefer-dist RUN export COMPOSER_PROCESS_TIMEOUT=2000 && composer install --no-dev --ignore-platform-reqs --no-scripts --prefer-dist
# Stage 2: Final image # Stage 2: Final image
FROM php:8.4-fpm-alpine FROM php:8.4-fpm-alpine
@@ -16,6 +16,8 @@ RUN apk add --no-cache --update nginx \
# Copy dependencies from vendor stage # Copy dependencies from vendor stage
COPY --from=vendor /app/vendor /var/www/html/vendor COPY --from=vendor /app/vendor /var/www/html/vendor
# Copy aws.phar
# aws.phar is now installed via composer
# Copy application code # Copy application code
COPY . /var/www/html/ COPY . /var/www/html/

View File

@@ -4,10 +4,10 @@
"type": "project", "type": "project",
"require": { "require": {
"php": "^8.2", "php": "^8.2",
"aws/aws-sdk-php": "^3.300",
"ext-pdo": "*", "ext-pdo": "*",
"ext-curl": "*", "ext-curl": "*",
"ext-json": "*" "ext-json": "*",
"aws/aws-sdk-php": "^3.0"
}, },
"autoload": { "autoload": {
"classmap": [ "classmap": [

View File

@@ -1,4 +1,4 @@
{ {
"version": "6.0.0", "version": "7.0.0",
"author": "Ivan Carlos" "author": "Ivan Carlos"
} }