Skip to content

Commit

Permalink
fix: shell isn't bash, so can't expand that way, maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
halkeye committed Jun 3, 2023
1 parent d5c4180 commit 24e9a6d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ RUN tar cf - --one-file-system -C /usr/src/matomo . | tar xf - -C /var/www/html
find /var/www/html/tmp -type d -exec chmod 755 {} \; && \
find /var/www/html/tmp/{assets,cache,logs,tcpdf,templates_c}/ -type f -exec chmod 644 {} \; && \
find /var/www/html/tmp/{assets,cache,logs,tcpdf,templates_c}/ -type d -exec chmod 755 {} \; && \
cd /var/www/html/misc && ln -s /usr/share/GeoIP/{GeoLite2-ASN.mmdb,GeoLite2-City.mmdb,GeoLite2-Country.mmdb} ./
cd /var/www/html/misc && ln -s /usr/share/GeoIP/GeoLite2-ASN.mmdb ./ && \
cd /var/www/html/misc && ln -s /usr/share/GeoIP/GeoLite2-City.mmdb ./ && \
cd /var/www/html/misc && ln -s /usr/share/GeoIP/GeoLite2-Country.mmdb ./
USER 1001
RUN touch config/config.ini.php; ./console core:create-security-files

0 comments on commit 24e9a6d

Please sign in to comment.