Setup NPM with an empty package.json file

Note that, even if we're excluding the `node_modules/` folder from
version control, we aren't adding it to Capistrano's shared folders
because, when `node_modules` is a symbolic link, NPM removes it when
running `npm install`.
This commit is contained in:
Javi Martín
2023-07-22 03:22:08 +02:00
parent ed4f8ad6d9
commit ad166fba4c
9 changed files with 26 additions and 0 deletions

View File

@@ -51,6 +51,9 @@ RUN curl -sL https://github.com/nodenv/node-build/archive/master.tar.gz | tar xz
COPY Gemfile* ./
RUN bundle install
COPY package* ./
RUN npm install
# Copy the Rails application into place
COPY . .