Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ COPY ./php.ini "$PHP_INI_DIR/php.ini"
RUN a2enmod rewrite

# Copy the downloaded release
RUN cp -R /tmp/koel/. /var/www/html
RUN [ ! -f /var/www/html/public/manifest.json ] && cp /var/www/html/public/manifest.json.example /var/www/html/public/manifest.json || true
RUN chown -R www-data:www-data /var/www/html
RUN cp -R /tmp/koel/. /var/www/html \
&& mv /var/www/html/public/manifest.json.example /var/www/html/public/manifest.json \
&& chown -R www-data:www-data /var/www/html

# Create /tmp/koel if it doesn't exist, and set ownership to www-data
RUN mkdir -p /tmp/koel \
Expand Down