Radial tree + Forces
This commit is contained in:
18
Dockerfile
Normal file
18
Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
FROM node:lts-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copy dependency definitions
|
||||
COPY package*.json ./
|
||||
|
||||
# Install dependencies
|
||||
RUN npm install
|
||||
|
||||
# Copy the rest of the source code
|
||||
COPY . .
|
||||
|
||||
# Expose the standard Vite port
|
||||
EXPOSE 5173
|
||||
|
||||
# Compute layout, then start the dev server with --host for external access
|
||||
CMD ["sh", "-c", "npm run layout && npm run dev -- --host"]
|
||||
Reference in New Issue
Block a user