chore: update package.json scripts for enhanced application startup and development workflow

This commit is contained in:
Jennie Robinson Faber 2025-08-16 21:02:39 +01:00
parent f935380781
commit 2eb9e6ecd5

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM node:22.12-bullseye
WORKDIR /app
COPY package.json yarn.lock ./
RUN corepack enable && yarn install --frozen-lockfile
COPY . .
RUN yarn build
CMD ["yarn", "start"]