Skip to content

Commit

Permalink
update cosign, fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kwinwithak committed Aug 16, 2024
1 parent a2f5d62 commit 2ad0c97
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
# https://github.com/sigstore/cosign-installer
- name: Install cosign
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@f3c664df7af409cb4873aa5068053ba9d61a57b6 #v2.6.0
uses: sigstore/cosign-installer@v3.6.0
with:
cosign-release: 'v1.11.0'
cosign-release: 'v2.4.0'


# Workaround: https://github.com/docker/build-push-action/issues/461
Expand Down
5 changes: 3 additions & 2 deletions lamp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ RUN docker-php-ext-install mysqli && \
docker-php-ext-enable mysqli && \
docker-php-ext-install exif && \
docker-php-ext-enable exif && \
docker-php-ext-install intl && \
docker-php-ext-enable intl && \
apt-get update && \
apt-get upgrade -y && \
apt-get install -y libpng-dev libfreetype6-dev libjpeg62-turbo-dev libgd-dev libpng-dev git libwebp-dev && \
Expand All @@ -17,3 +15,6 @@ RUN docker-php-ext-install mysqli && \
--with-jpeg=/usr/include/ --with-webp && \
docker-php-ext-install gd

RUN apt-get install libicu-dev -y && \
docker-php-ext-install intl && \
docker-php-ext-enable intl

0 comments on commit 2ad0c97

Please sign in to comment.