Created deployment

This commit is contained in:
2026-02-11 17:48:29 +01:00
parent 39f8708fca
commit 6c6916c4cb

View File

@@ -2,11 +2,13 @@
FROM node:22-alpine AS release
WORKDIR /home/node/app
RUN corepack enable
COPY ./dist/packages ./packages
COPY ./package.json ./
RUN npm install --omit=dev
RUN yarn install
RUN mkdir -p packages/node_modules && \
ln -sf ../sim-shared packages/node_modules/sim-shared