Compare commits

...

3 Commits

Author SHA1 Message Date
hackerESQ 935a5020db Merge branch 'main' of https://github.com/investbrainapp/investbrain 2026-03-15 18:24:42 -05:00
hackerESQ 0b9f7d5254 add intl to build set to satisfy filament 2026-03-15 18:24:40 -05:00
hackerESQ 6ea4b5c12a Remove swap space increase step from workflow
Removed the step to increase swap space in the build job.
2026-03-15 18:10:35 -05:00
2 changed files with 1 additions and 4 deletions
@@ -10,9 +10,6 @@ jobs:
build: build:
runs-on: self-hosted runs-on: self-hosted
steps: steps:
- name: Increase swap space
run: sudo /bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=5120 && sudo chmod 600 /var/swap.1 && sudo /sbin/mkswap /var/swap.1 && sudo /sbin/swapon /var/swap.1
- name: Login to Docker Hub - name: Login to Docker Hub
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
+1 -1
View File
@@ -27,7 +27,7 @@ RUN apt-get update && apt-get upgrade -y \
# Install PHP extensions # Install PHP extensions
RUN docker-php-ext-configure gd --with-freetype --with-jpeg \ RUN docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install -j$(nproc) gd zip && docker-php-ext-install -j$(nproc) gd zip intl
# Copy application files # Copy application files
COPY . . COPY . .