* adjust eslint * playground depreciation warning * adjust some tests * playwright simulate run instead just raw phin * adjusted ci * vibe debugging * update all deps, small ci changes, and strict dockerized build
9 lines
142 B
Docker
9 lines
142 B
Docker
FROM node:22
|
|
|
|
WORKDIR /srv/app
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
COPY . .
|
|
RUN npm run build
|
|
EXPOSE 3000
|
|
CMD ["node", "build/src/index.js"] |