Spaces:
Sleeping
Sleeping
Create Dockerfile
Browse files- 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"]
|