diff --git a/.github/workflows/budibase_ci.yml b/.github/workflows/budibase_ci.yml index a94c56407f..6cdfba068b 100644 --- a/.github/workflows/budibase_ci.yml +++ b/.github/workflows/budibase_ci.yml @@ -69,11 +69,7 @@ jobs: # Run build all the projects - name: Build run: | - if ${{ env.USE_NX_AFFECTED }}; then - yarn build --since=${{ env.NX_BASE_BRANCH }} - else - yarn build - fi + yarn build # Check the types of the projects built via esbuild - name: Check types run: | diff --git a/hosting/single/Dockerfile b/hosting/single/Dockerfile index 6fc1f96d28..9fdf2449d1 100644 --- a/hosting/single/Dockerfile +++ b/hosting/single/Dockerfile @@ -1,7 +1,7 @@ FROM node:18-slim as build # install node-gyp dependencies -RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends apt-utils cron g++ make python +RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends apt-utils cron g++ make python3 # add pin script WORKDIR / diff --git a/lerna.json b/lerna.json index b03609303e..7dc6b51562 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "2.9.24-alpha.0", + "version": "2.9.24-alpha.1", "npmClient": "yarn", "packages": [ "packages/*" diff --git a/packages/server/Dockerfile b/packages/server/Dockerfile index 61f064ecfb..e1b3b208c7 100644 --- a/packages/server/Dockerfile +++ b/packages/server/Dockerfile @@ -18,7 +18,7 @@ ENV TOP_LEVEL_PATH=/ # handle node-gyp RUN apt-get update \ - && apt-get install -y --no-install-recommends g++ make python + && apt-get install -y --no-install-recommends g++ make python3 RUN yarn global add pm2 # Install client for oracle datasource