Skip to content

Commit

Permalink
Fix a typo (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
szepeviktor committed Mar 2, 2024
1 parent f448b20 commit 40bf00e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions testenv/env/php-7.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM php:7.4
ENV phpunit_verison 7.5
ENV phpunit_version 7.5
ENV redis_version 6.0.8

RUN apt-get update && \
apt-get install -y wget libssl-dev

RUN wget https://phar.phpunit.de/phpunit-${phpunit_verison}.phar && \
chmod +x phpunit-${phpunit_verison}.phar && \
mv phpunit-${phpunit_verison}.phar /usr/local/bin/phpunit
RUN wget https://phar.phpunit.de/phpunit-${phpunit_version}.phar && \
chmod +x phpunit-${phpunit_version}.phar && \
mv phpunit-${phpunit_version}.phar /usr/local/bin/phpunit

# install php extension
RUN yes '' | pecl install -f redis && \
Expand Down

0 comments on commit 40bf00e

Please sign in to comment.