register and sign in pages
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
# Development image: the vite dev server with HMR.
|
||||
# Production is a static build served by nginx - see .build/prod/web.Dockerfile.
|
||||
FROM node:22-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json package-lock.json ./
|
||||
RUN npm ci
|
||||
|
||||
COPY . .
|
||||
|
||||
EXPOSE 5173
|
||||
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]
|
||||
Reference in New Issue
Block a user