We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6f5a09 commit b0bed1eCopy full SHA for b0bed1e
.dockerignore
@@ -0,0 +1,6 @@
1
+docker-compose/
2
+.github/
3
+.gitignore
4
+start.bat
5
+Dockerfile
6
+.dockerignore
Dockerfile
@@ -4,8 +4,8 @@ FROM node:19
# Set the working directory
WORKDIR /app
7
-# Clone the project repository
8
-RUN git clone https://github.com/PawanOsman/ChatGPT.git /app
+# Copy source code
+COPY . .
9
10
# Install dependencies
11
RUN npm install
0 commit comments