diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..c48b96e --- /dev/null +++ b/.dockerignore @@ -0,0 +1,6 @@ +docker-compose/ +.github/ +.gitignore +start.bat +Dockerfile +.dockerignore diff --git a/Dockerfile b/Dockerfile index 223c363..d27c405 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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