Merge pull request #85 from k8scat/main

optimize: copy source code in Dockerfile
This commit is contained in:
Pawan Osman
2024-04-11 15:47:03 +03:00
committed by GitHub
2 changed files with 8 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
docker-compose/
.github/
.gitignore
start.bat
Dockerfile
.dockerignore
+2 -2
View File
@@ -4,8 +4,8 @@ FROM node:19
# Set the working directory
WORKDIR /app
# Clone the project repository
RUN git clone https://github.com/PawanOsman/ChatGPT.git /app
# Copy source code
COPY . .
# Install dependencies
RUN npm install