bolt.diy / Dockerfile
Rahul Bhardwaj
Add support for docker dev in bolt
816d6d5
raw
history blame
226 Bytes
FROM node:20.15.1
WORKDIR /app
RUN npm install -g pnpm
# Copy the rest of your app's source code
COPY . .
# Install dependencies
RUN pnpm install
# Expose the port the app runs on
EXPOSE 5173
CMD [ "pnpm", "run", "dev" ]