because I got bored of customising my CV for every job
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(docker): upgrade images to node:22-alpine

+3 -3
+1 -1
apps/client/Dockerfile
··· 1 - FROM node:20-alpine AS builder 1 + FROM node:22-alpine AS builder 2 2 WORKDIR /app 3 3 COPY . . 4 4 RUN npm ci && npm run build --workspaces --if-present
+1 -1
apps/server/Dockerfile
··· 1 - FROM node:20-alpine 1 + FROM node:22-alpine 2 2 3 3 # Install OpenSSL for Prisma 4 4 RUN apk add openssl
+1 -1
docker-compose.yml
··· 37 37 start_period: 10s 38 38 39 39 client: 40 - image: node:20-alpine 40 + image: node:22-alpine 41 41 working_dir: /app 42 42 command: sh -c "npm install && npm run codegen && npm run dev -w @cv/client" 43 43 environment: