Debug
Some checks failed
Push image to registry / build-image (push) Failing after 52s

This commit is contained in:
2025-02-08 10:23:34 +01:00
parent 7f4ba8a8c9
commit ec869bffe9
4 changed files with 13 additions and 3 deletions

View File

@ -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