chore: add otp based login

This commit is contained in:
mahyargdz
2024-11-18 09:16:17 +03:30
parent 245051024b
commit d887cf67c1
16 changed files with 1266 additions and 713 deletions
+18
View File
@@ -0,0 +1,18 @@
# Use the official Node.js image as a base
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN mkdir -p /app/.nuxt && chown -R node:node /app
USER node
EXPOSE 3000
CMD ["npm", "run", "dev"]