Skip to content

Commit

Permalink
TASK: Fix Docker setup for development (#2910)
Browse files Browse the repository at this point in the history
This change switch from Node 8 to 14 and fix the `run.sh` script.
  • Loading branch information
dfeyer authored May 18, 2021
1 parent fe87782 commit 28b69b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Build/Docker/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
#
set -e

cd Packages/Application/Neos.Neos.Ui

yarn install
node_modules/.bin/lerna run build --concurrency 1

Expand All @@ -17,4 +19,4 @@ echo " Neos:"
echo " Ui:"
echo " frontendDevelopmentMode: true"

NEOS_BUILD_ROOT=$(pwd) node_modules/.bin/webpack --progress --color --watch-poll --watch
NEOS_BUILD_ROOT=$(pwd) node_modules/.bin/webpack --progress --color --watch
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: '2'
version: '3'

services:
app:
image: node:8
image: node:14
command: Build/Docker/run.sh
working_dir: /app

Expand Down

0 comments on commit 28b69b2

Please sign in to comment.