first commit
This commit is contained in:
6
Dockerfile.dev
Normal file
6
Dockerfile.dev
Normal file
@@ -0,0 +1,6 @@
|
||||
FROM node:20-alpine
|
||||
WORKDIR /app
|
||||
COPY package.json package-lock.json ./
|
||||
RUN npm ci
|
||||
# source code is bind-mounted at runtime — node_modules come from this image layer
|
||||
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0", "--port", "5173"]
|
||||
Reference in New Issue
Block a user