2 Commits

Author SHA1 Message Date
3e232ab198 Fix PC Load Letter Error 2025-05-09 10:33:55 -04:00
f74d7f3895 I have no idea what Copilot was doing there. 2025-05-09 10:18:51 -04:00
2 changed files with 3 additions and 1 deletions

View File

@@ -5,6 +5,8 @@ include:
inputs:
registry: scr.siteworxpro.com
registryUser: $CI_REGISTRY_USER
dockerHubUser: $CI_DOCKER_HUB_USER
dockerHubPat: $CI_DOCKER_HUB_PAT
registryPassword: $CI_REGISTRY_PASSWORD
platform: "linux/amd64,linux/arm64"
stage: build

View File

@@ -17,7 +17,7 @@ FROM php:8.4.6-alpine AS php
# Move the production PHP configuration file to the default location
RUN mv /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini \
&& apk add libpq-dev linux-headers --no-cache \
&& docker-php-ext-install pdo_pgsql sockets \
&& docker-php-ext-install sockets \
&& rm -rf /var/cache/apk/*
# Set the working directory to /app