Skip to content

Commit

Permalink
fixing dockerfile php ini paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Wojczal committed Jan 10, 2025
1 parent 2feb84f commit 5197ba1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/docker-build-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
push:
branches:
- 'develop'
- "develop"
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -27,7 +27,7 @@ jobs:
push: true
tags: escolalms/api:${{github.ref_name}}
platforms: linux/amd64

- name: Create the Mattermost Message
run: |
echo "{\"text\":\"There is a new [escolalms/api:develop](https://hub.docker.com/r/escolalms/api/tags?page=1&name=develop) image built. k8s rollout will happen soon\"}" > mattermost.json
Expand All @@ -36,8 +36,10 @@ jobs:
MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
PAYLOAD: |-
{"text":"There is a new [escolalms/api:develop](https://hub.docker.com/r/escolalms/api/tags?page=1&name=develop) image built. k8s rollout will happen soon"}
- name: Send webook to hooks to rollout all devs on k8s
- name: Send webook to hooks to rollout all devs on k8s
uses: distributhor/workflow-webhook@v3
with:
webhook_url: ${{ secrets.K8S_WEBHOOK_URL_API_DEVELOP }}
env:
webhook_url: ${{ secrets.K8S_WEBHOOK_URL_API_DEVELOP }}
2 changes: 2 additions & 0 deletions Dockerfile.develop
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ FROM escolalms/php:8.3-bookworm
WORKDIR /var/www/html
EXPOSE 9000
COPY / /var/www/html
COPY docker/docker-entrypoint.sh /docker-entrypoint.sh

RUN pecl install excimer
RUN \
cp docker/conf/supervisor/supervisord.conf /etc/supervisord.conf \
Expand Down

0 comments on commit 5197ba1

Please sign in to comment.