diff --git a/dev.Dockerfile b/Dockerfile similarity index 86% rename from dev.Dockerfile rename to Dockerfile index 7b73c3e..50d7cbe 100644 --- a/dev.Dockerfile +++ b/Dockerfile @@ -7,6 +7,9 @@ WORKDIR /app # Copy package.json and package-lock.json to the working directory COPY package*.json ./ +# Iran access Repo +RUN npm config set registry https://mirror-npm.runflare.com + # Install the project dependencies RUN npm i --force @@ -14,7 +17,7 @@ RUN npm i --force COPY . . # Expose the port on which your NestJS application will run -# EXPOSE 9000 +EXPOSE 3002 # Start the NestJS application CMD ["npm", "start"] diff --git a/dev.docker-compose.yml b/docker-compose.yml similarity index 100% rename from dev.docker-compose.yml rename to docker-compose.yml