File tree Expand file tree Collapse file tree 1 file changed +23
-3
lines changed
Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ WORKDIR /var/www/html
2121COPY package*.json ./
2222RUN npm ci
2323COPY --from=composer /var/www/html/vendor/tightenco/ziggy ./vendor/tightenco/ziggy
24- COPY vite.config.js ./
24+ COPY vite.config.ts ./
2525COPY resources ./resources
2626RUN npm run build
2727
@@ -30,11 +30,31 @@ FROM base AS development
3030ARG USER_ID
3131ARG GROUP_ID
3232USER root
33- RUN apk add --no-cache curl git bash gnupg postgresql-client openssh-client \
33+ RUN apk update \
34+ && apk add --no-cache curl git bash gnupg postgresql-client openssh-client \
3435 && apk add --no-cache --virtual .build-deps build-base autoconf \
3536 && install-php-extensions xdebug \
37+ bcmath \
38+ gd \
39+ intl \
40+ mysqli \
41+ pdo_mysql \
42+ curl \
43+ dom \
44+ fileinfo \
45+ filter \
46+ hash \
47+ mbstring \
48+ openssl \
49+ pcre \
50+ session \
51+ xml \
52+ redis \
53+ opcache \
54+ zip \
55+ exif \
3656 && rm -rf /var/cache/apk/* \
37- && apk del .build-deps
57+ && apk del --force-broken-world .build-deps
3858COPY --from=node /usr/lib /usr/lib
3959COPY --from=node /usr/local/lib /usr/local/lib
4060COPY --from=node /usr/local/include /usr/local/include
You can’t perform that action at this time.
0 commit comments