Skip to content

Commit

Permalink
fix: Use debian based image instead of alpine (to avoid Git v2.36)
Browse files Browse the repository at this point in the history
  • Loading branch information
siketyan committed Jul 13, 2022
1 parent fce76af commit 4681d92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM php:8.0-cli-alpine
FROM php:8.1-cli

COPY . /app
WORKDIR /app

RUN apk add --no-cache git
RUN apt update && apt install -y git zip unzip

RUN php -r "copy('https://getcomposer.org/download/2.1.12/composer.phar', 'composer.phar');" \
&& chmod +x ./composer.phar \
Expand Down

0 comments on commit 4681d92

Please sign in to comment.