Linc70J / lavawhale

Docker的PHP開發環境
MIT License
2 stars 2 forks source link

Node.js vs V8Js #2

Open marsnow opened 5 years ago

marsnow commented 5 years ago

spatie/laravel-server-side-rendering 可以用以上兩種方式產生 ssr 的檔案

如果使用 Node.js 目前的設定只有再 circleci build 的時候短暫的加進來而已 web 這個 image 本身沒有安裝 Node.js 所以 laravel 會說

Error Output:
================
sh: 1: /usr/bin/node: not found

然而使用 V8Js,今日測試的結果似乎是因為 docker 裡的 os 是 Debian 怎麼測試都無法完成安裝 以下是測試的主要設定 其他設定 forked from Linc70J/lavawhale Dockerfile

###########################################################################
# V8Js:
###########################################################################

ARG INSTALL_V8Js=false

RUN if [ ${INSTALL_V8Js} = true ]; then \
  apt-get install -y software-properties-common && \
  add-apt-repository -y ppa:ondrej/php && \
  add-apt-repository -y ppa:pinepain/libv8 \
;fi

RUN if [ ${INSTALL_V8Js} = true ]; then \
  apt-get -y install libv8-dev \
;fi

RUN if [ ${INSTALL_V8Js} = true ]; then \
  pecl install v8js && \
  docker-php-ext-enable v8js \
;fi

以及參考官方的做法都無法安裝 v8js/README.Linux.md

marsnow commented 5 years ago

其他參考資料: 使用laradock搭建laravel开发环境,安装V8Js扩展安装 koriym/INSTALLV8JS.md