Skip to content

Commit c500095

Browse files
committed
chore(docker): copy llms.txt to the Docker image
1 parent 269d60d commit c500095

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ FROM oven/bun:1.1.44-alpine AS builder
44
# Set working directory and copy necessary files
55
WORKDIR /app
66

7+
COPY docs/public/llms.txt llms.txt
78
# Copy package files first for better caching
89
COPY package.json bun.lockb ./
910

docs/applications/laravel.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -275,9 +275,9 @@ stdout_logfile=/var/log/worker-inertia-ssr.log
275275

276276
1. Create a new resource from a private or public repository.
277277
2. Set the `Ports Exposes` field to `8000`, for exemple.
278-
3. Set default environnement variables using `Developer view` in `Environment Variables` :
278+
3. Set default environnement variables using `Developer view` in `Environment Variables`:
279279

280-
```Environnement variables
280+
```sh
281281
APP_DEBUG=false
282282
APP_ENV=staging
283283
APP_KEY= #YourAppKey
@@ -337,7 +337,7 @@ CMD ["unitd", "--no-daemon"]
337337

338338
3. Create a `unit.json` file (lowercase) at the root of your project with the following content:
339339

340-
```unit.json
340+
```json
341341
{
342342
"listeners": {
343343
"*:8000": {
@@ -368,8 +368,8 @@ CMD ["unitd", "--no-daemon"]
368368
}
369369
}
370370
```
371-
4. Set Post-deployment to :
372-
```
373-
php artisan optimize:clear && php artisan config:clear && php artisan route:clear && php artisan view:clear && php artisan optimize
371+
4. Set Post-deployment to:
374372

375-
373+
```sh
374+
php artisan optimize:clear && php artisan config:clear && php artisan route:clear && php artisan view:clear && php artisan optimize
375+
```

0 commit comments

Comments
 (0)