Skip to content
This repository was archived by the owner on Apr 1, 2021. It is now read-only.

Commit 2edc533

Browse files
committedDec 29, 2018
fixed: dockerfile php-lint
1 parent 947b02a commit 2edc533

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ COPY package-lock.json /var/www
88
RUN npm ci
99

1010
COPY . /var/www
11-
RUN npm run lint
11+
RUN npm run lint-js
12+
RUN npm run lint-css
1213
RUN npm run prod
1314
RUN rm -rf /var/www/node_modules/
1415

@@ -58,6 +59,7 @@ RUN if [ ${FORCE_HTTPS} = true ]; then \
5859
;fi
5960

6061
COPY --from=compiler /var/www /var/www
62+
RUN php php-cs-fixer fix --dry-run
6163
RUN composer dump-autoload --no-dev --optimize
6264
RUN grep -q "APP_KEY=" .env || echo "APP_KEY=" >> .env
6365
RUN php artisan key:generate \

0 commit comments

Comments
 (0)