Skip to content

Commit 2f5edc2

Browse files
authored
Merge pull request #78 from wurstbrot/fix/versionAndWget
fix: wget and versions
2 parents 7566901 + 9e9ed2f commit 2f5edc2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.idea
22
data/dimensions.yaml
33
*~
4+
/vendor

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ WORKDIR /app
1616
RUN pip install pyyaml
1717
RUN python3 ./scripts/merge-dimensions.py
1818

19-
FROM php:7.2-apache
20-
RUN apt-get update && apt-get -y install apt-utils libyaml-dev
19+
FROM php:8.0.3-apache
20+
RUN apt-get update && apt-get -y dist-upgrade && apt-get -y install apt-utils libyaml-dev wget
2121
RUN docker-php-ext-install gettext
22-
RUN pecl channel-update pecl.php.net && pecl install yaml-2.0.0 && docker-php-ext-enable yaml
22+
RUN pecl channel-update pecl.php.net && pecl install yaml-2.2.1 && docker-php-ext-enable yaml
2323
RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf
2424
COPY . /var/www/html/
2525
RUN chmod 777 /var/www/html/selectedData.csv

0 commit comments

Comments
 (0)