diff --git a/.github/actions/prepare/action.yml b/.github/actions/prepare/action.yml index 56e2f22d4b8..cceb9b36f32 100644 --- a/.github/actions/prepare/action.yml +++ b/.github/actions/prepare/action.yml @@ -7,7 +7,7 @@ runs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: '18' + node-version: '16' cache: 'yarn' - name: Install packages shell: bash diff --git a/Dockerfile b/Dockerfile index 8a044966665..0db1c7e5e70 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ##NODE temporary builder image -from node:18-buster as uibuilder +from node:16-buster as uibuilder COPY ./ /src-ui WORKDIR /src-ui RUN yarn install --frozen-lockfile