We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b7c04f commit d265bf2Copy full SHA for d265bf2
docker/Dockerfile
@@ -47,16 +47,7 @@ WORKDIR /usr/src/app
47
COPY package*.json ./
48
COPY . .
49
# Installing Ruby and Node.js
50
-RUN apt update && apt install -y ruby-full libpq-dev
51
-#Install NVM
52
-RUN touch ~/.bashrc
53
-RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
54
-RUN source ~/.bashrc
55
-RUN export NVM_DIR="$HOME/.nvm"
56
-RUN [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
57
-RUN [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
58
-RUN nvm install node
59
-RUN nvm use node
+RUN apt update && apt install -y ruby-full libpq-dev nodejs npm
60
RUN gem install bundler
61
# Installing pnpm
62
RUN npm install -g pnpm
0 commit comments