Charan5775 commited on
Commit
a0829a5
·
verified ·
1 Parent(s): 6ac6cac

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -0
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use the Node.js 18 base image
2
+ FROM node:18
3
+
4
+ # Set the working directory
5
+ WORKDIR /app
6
+
7
+ # Clone the repository
8
+ RUN git clone https://github.com/coleam00/bolt.new-any-llm.git /app
9
+
10
+ # Install dependencies
11
+ RUN npm install
12
+
13
+ # Expose the application port
14
+ EXPOSE 5173
15
+
16
+ # Define the default command to start the application
17
+ CMD ["npm", "run", "start"]