Add dockerfile

This commit is contained in:
Jennie Robinson Faber 2025-08-23 12:05:39 +01:00
parent cdbf0733c5
commit ad9224b761

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"]