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 \
4
4
&& docker-php-ext-install mysqli \
5
5
&& docker-php-source delete
6
6
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)
8
8
RUN apt update \
9
9
&& apt install -y --no-install-recommends openjdk-11-jre
10
10
11
11
COPY . /var/www/openml
12
12
RUN mv /var/www/openml/openml_OS/config/BASE_CONFIG-BLANK.php /var/www/openml/openml_OS/config/BASE_CONFIG.php
13
13
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
17
18
18
19
COPY docker/config/*.load /etc/apache2/mods-enabled/
19
20
COPY docker/config/api.conf /etc/apache2/sites-enabled/000-default.conf
You can’t perform that action at this time.
0 commit comments