Index: .env.example
===================================================================
--- .env.example	(revision 026c0da153eae94daa38be77f433888fd18f3c42)
+++ .env.example	(revision dce390db02e353f59768b99ff2f1c79239398b12)
@@ -1,5 +1,5 @@
 APP_NAME=Laravel
 APP_ENV=local
-APP_KEY=
+APP_KEY=$APP_KEY
 APP_DEBUG=true
 APP_URL=http://localhost
@@ -59,5 +59,5 @@
 MAIL_PASSWORD=null
 MAIL_FROM_ADDRESS="hello@example.com"
-MAIL_FROM_NAME="${APP_NAME}"
+MAIL_FROM_NAME='Pharma Export'
 
 AWS_ACCESS_KEY_ID=
@@ -67,5 +67,5 @@
 AWS_USE_PATH_STYLE_ENDPOINT=false
 
-VITE_APP_NAME=Pharma Export
+VITE_APP_NAME='Pharma Export'
 
 INIT_USER_NAME="Default User"
Index: Dockerfile
===================================================================
--- Dockerfile	(revision 026c0da153eae94daa38be77f433888fd18f3c42)
+++ Dockerfile	(revision dce390db02e353f59768b99ff2f1c79239398b12)
@@ -1,2 +1,10 @@
+FROM node AS builder
+
+WORKDIR /app
+COPY package*.json .
+RUN npm install
+COPY . .
+RUN npm run build
+
 FROM php:fpm
 
@@ -8,4 +16,5 @@
 RUN rm -rf /var/www/html
 COPY . .
+COPY --from=builder /app/public/build ./public/build
 RUN composer install --no-dev --optimize-autoloader
 RUN composer require
Index: README.md
===================================================================
--- README.md	(revision 026c0da153eae94daa38be77f433888fd18f3c42)
+++ README.md	(revision dce390db02e353f59768b99ff2f1c79239398b12)
@@ -2,8 +2,6 @@
 
 ```sh
-cp .env.example .env
-mkdir ./storage/framework/{cache,sessions,views}
-export APP_KEY="$(openssl rand -base64 32)"
-envsubst <"./.env">"./.env"
+export APP_KEY=$(openssl rand -base64 32)
+envsubst <"./.env.example">"./.env"
 docker compose up --build -d
 ```
Index: entrypoint.sh
===================================================================
--- entrypoint.sh	(revision 026c0da153eae94daa38be77f433888fd18f3c42)
+++ entrypoint.sh	(revision dce390db02e353f59768b99ff2f1c79239398b12)
@@ -3,5 +3,7 @@
 set -e
 
-# php artisan migrate
+mkdir -p ./storage/framework/cache
+mkdir -p ./storage/framework/sessions
+mkdir -p ./storage/framework/views
 php artisan migrate:fresh --seed
 php artisan serve --host=0.0.0.0 --port=80
