mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-10 07:27:57 -05:00
15 lines
213 B
Docker
15 lines
213 B
Docker
FROM node:20-alpine
|
|
|
|
# Set working directory
|
|
WORKDIR /app
|
|
|
|
# Copy the entire sim directory
|
|
COPY sim/ ./
|
|
|
|
# Install dependencies
|
|
RUN npm install
|
|
|
|
EXPOSE 3000
|
|
|
|
# Default to development mode
|
|
CMD ["npm", "run", "dev"] |