diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index e5ad679..d9765f9 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -31,7 +31,7 @@ jobs: - name: Setup Node 18.x uses: actions/setup-node@v4 with: - node-version: 18.4.0 + node-version: 18 cache: 'npm' cache-dependency-path: frontend/package-lock.json - name: npm build diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 03daf4f..917aeeb 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,6 +1,6 @@ # FIRST STAGE # Define the base image -FROM node:18.4.0 as build +FROM node:18.20.2 as build # Create a folder, and copy package.json and package-lock.json to it WORKDIR /app