diff --git a/Dockerfile b/Dockerfile index 255b45f8..65d49570 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,33 @@ -FROM node:16-alpine AS base +# syntax = docker/dockerfile:latest + +# Install dependencies only when needed +FROM node:16-alpine AS deps + +WORKDIR /app + +COPY package.json pnpm-lock.yaml* ./ + +RUN <