diff --git a/.circleci/config.yml b/.circleci/config.yml index ee043074b..737dcb99e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,7 @@ orbs: executors: node_postgres: docker: - - image: cimg/node:18.16.0 + - image: cimg/node:18.17.0 - image: cimg/postgres:15.3 environment: POSTGRES_USER: root @@ -17,7 +17,7 @@ executors: jobs: code_style: docker: - - image: cimg/node:18.16.0 + - image: cimg/node:18.17.0 steps: - checkout - node/install-packages @@ -35,7 +35,7 @@ jobs: build_frontend: docker: - - image: cimg/gcp:2023.05 + - image: cimg/gcp:2023.07 working_directory: /mnt/ramdisk steps: - checkout @@ -204,7 +204,7 @@ jobs: build_backend: docker: - - image: cimg/gcp:2023.05 + - image: cimg/gcp:2023.07 working_directory: /mnt/ramdisk steps: - checkout @@ -319,7 +319,7 @@ jobs: # command: "bin/push-docker-auth-image.sh" deploy_to_production: docker: - - image: cimg/gcp:2023.05 + - image: cimg/gcp:2023.07 working_directory: /mnt/ramdisk steps: - checkout diff --git a/backend/Dockerfile b/backend/Dockerfile index 52ae52e98..4288e4237 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18.16.0-alpine3.18 +FROM node:18.17.0-alpine3.18 RUN apk update && \ apk add \ diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 867bc2e2e..e432a9fbd 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18.16.0-buster +FROM node:18.17.0-buster RUN apt-get update \ && apt-get install -y build-essential libgl1-mesa-glx pigz \ diff --git a/frontend/components/Link.tsx b/frontend/components/Link.tsx index e44c8764c..6934b43a4 100644 --- a/frontend/components/Link.tsx +++ b/frontend/components/Link.tsx @@ -7,5 +7,5 @@ export const LinkBehavior = React.forwardRef< React.AnchorHTMLAttributes & NextLinkProps >((props, ref) => { const { href, ...other } = props - return + return }) diff --git a/frontend/next.config.js b/frontend/next.config.js index 51b7f95e3..237d03282 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -1,9 +1,9 @@ // @ts-check const path = require("path") -const dns = require("dns") +/*const dns = require("dns") // fix for undici -dns.setDefaultResultOrder("ipv4first") +dns.setDefaultResultOrder("ipv4first")*/ const isProduction = process.env.NODE_ENV === "production"