This commit is contained in:
@ -38,6 +38,8 @@ RUN mkdir -p public/build/ && npm i && npm run build
|
||||
# RUN
|
||||
FROM php:8.2-alpine AS final
|
||||
|
||||
ARG APP_ENV_FILE=.env.docker
|
||||
|
||||
# Install system dependencies
|
||||
RUN apk update && apk add --no-cache \
|
||||
git \
|
||||
@ -63,7 +65,7 @@ WORKDIR /var/www
|
||||
|
||||
COPY . .
|
||||
COPY --from=build-vue /usr/app/public/build ./public/build
|
||||
RUN mv .env.docker .env
|
||||
RUN mv ${APP_ENV_FILE} .env
|
||||
|
||||
# DUSK
|
||||
# RUN php artisan dusk:install && php artisan dusk:chrome-driver && mv ./undetectedChromedriver/chromedriver-linux ./vendor/laravel/dusk/bin/chromedriver-linux
|
||||
|
Reference in New Issue
Block a user