File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -4,16 +4,17 @@ RUN docker-php-source extract \
44 && docker-php-ext-install mysqli \
55 && docker-php-source delete
66
7- # Java is necessery for the direct calls to the evaluation engine (in Api_splits.php)
7+ # Java is necessary for the direct calls to the evaluation engine (in Api_splits.php)
88RUN apt update \
99 && apt install -y --no-install-recommends openjdk-11-jre
1010
1111COPY . /var/www/openml
1212RUN mv /var/www/openml/openml_OS/config/BASE_CONFIG-BLANK.php /var/www/openml/openml_OS/config/BASE_CONFIG.php
1313
14- RUN mkdir -p /var/www/openml/logs
15- RUN mkdir /data
16-
14+ RUN mkdir -p /var/www/openml/logs && \
15+ mkdir -p /var/www/data/log && \
16+ mkdir /data && \
17+ chown -R www-data:www-data /var/www/data
1718
1819COPY docker/config/*.load /etc/apache2/mods-enabled/
1920COPY docker/config/api.conf /etc/apache2/sites-enabled/000-default.conf
You can’t perform that action at this time.
0 commit comments