File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change
1
+ vendor /
Original file line number Diff line number Diff line change 1
- ARG OCTANE_TAG=pr-27- octane-4.8-php8.1-alpine
1
+ ARG OCTANE_TAG=octane-a65874dd8e099759ebdd6271caff2ae2513cc65f -4.8-php8.1-alpine
2
2
3
3
# 1. Create a preliminary step to build the required assets & dependencies.
4
4
###########################################################################
@@ -7,8 +7,7 @@ FROM quay.io/renokico/laravel-base:$OCTANE_TAG as build
7
7
COPY . /var/www/html
8
8
9
9
# Update permissions
10
- RUN chown www-data:www-data /var/www/html ; \
11
- chmod -R 777 /var/www/html
10
+ RUN chmod -R 777 /var/www/html
12
11
13
12
# Install dependencies.
14
13
RUN apk --update --no-cache add \
@@ -50,8 +49,7 @@ FROM quay.io/renokico/laravel-base:$OCTANE_TAG
50
49
51
50
COPY --from=build /var/www/html .
52
51
53
- RUN chown www-data:www-data /var/www/html ; \
54
- chmod -R 777 /var/www/html ; \
52
+ RUN chmod -R 777 /var/www/html ; \
55
53
apk --update --no-cache add \
56
54
libjpeg-turbo-dev \
57
55
jpeg-dev \
Original file line number Diff line number Diff line change 4
4
5
5
use App \Jobs \LogRequest ;
6
6
use Illuminate \Http \Request ;
7
+ use Illuminate \Support \Facades \Log ;
7
8
use Illuminate \Support \Facades \Response ;
8
9
9
10
class LogRequestController extends Controller
@@ -17,6 +18,7 @@ class LogRequestController extends Controller
17
18
public function __invoke (Request $ request )
18
19
{
19
20
LogRequest::dispatch ($ request ->__toString ());
21
+ Log::debug ($ request ->__toString ());
20
22
21
23
return Response::json ([
22
24
'status ' => 'success ' ,
You can’t perform that action at this time.
0 commit comments