diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a164d92..cf2b1c5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ stages: - deploy static: - image: node:18-slim + image: node:19-slim stage: build cache: key: npm-$CI_COMMIT_REF_SLUG @@ -118,7 +118,7 @@ gunicorn_check: - gunicorn --check-config --config etc/gunicorn.conf.py npm_lint: - image: node:18-slim + image: node:19-slim stage: test dependencies: - static diff --git a/Dockerfile b/Dockerfile index 2b23b06..55e64e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-slim as frontend +FROM node:19-slim as frontend COPY package.json package-lock.json ./ RUN npm ci --no-audit - -progress=false --omit=dev