diff --git a/octane/Dockerfile b/octane/Dockerfile index f95eb63..bb41ad9 100644 --- a/octane/Dockerfile +++ b/octane/Dockerfile @@ -4,8 +4,9 @@ ARG DEBIAN_VERSION=trixie FROM dunglas/frankenphp:${FRANKENPHP_VERSION}-php${PHP_VERSION}-${DEBIAN_VERSION} AS prepare-app -RUN curl -sL "https://github.com/invoiceninja/invoiceninja/releases/latest/download/invoiceninja.tar.gz" | \ - tar -xz \ +ADD https://github.com/invoiceninja/invoiceninja/releases/latest/download/invoiceninja.tar.gz /tmp/invoiceninja.tar.gz + +RUN tar -xz /tmp/invoiceninja.tar.gz \ && ln -s ./resources/views/react/index.blade.php ./public/index.html \ # Symlink && php artisan storage:link \