diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 31684652..55b318a8 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -25,9 +25,9 @@ jobs: test: runs-on: ubuntu-22.04 strategy: + fail-fast: false matrix: node-version: [18.x, 20.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} diff --git a/Dockerfile b/Dockerfile index dc6716c2..853a3dce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # ---- Base Node ---- -FROM node:18-bullseye AS base +FROM node:16-stretch AS base # ---- Dependencies ---- FROM base AS dependencies @@ -20,7 +20,6 @@ FROM base AS ui WORKDIR /app RUN git config --global url."https://github.com/".insteadOf git://github.com/ \ && git clone --depth=1 https://github.com/OpenTMI/opentmi-default-gui.git . \ - && apt update && apt install -y python2 \ && npm ci \ && NODE_ENV=production npm run build:prod \ && rm -r node_modules