initial
All checks were successful
Deploy / build (push) Successful in 2m23s

This commit is contained in:
Круглицкий Никита Витальевич
2025-11-21 08:08:22 +06:00
commit 88c2e54ece
18 changed files with 5314 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:22-alpine
RUN mkdir -p /home/node/app/node_modules && chown -R node:node /home/node/app
WORKDIR /home/node/app
RUN corepack enable
COPY package*.json ./
USER node
RUN yarn install
COPY --chown=node:node . .
ENV PORT=80
EXPOSE 80
CMD [ "npm", "start" ]