Browse Source

install npm deps in docker

master
Thomas Clavier 1 year ago
parent
commit
afaa5d4f7b
No known key found for this signature in database
GPG Key ID: 20CCE23E53E6E41A
  1. 3
      Dockerfile

3
Dockerfile

@ -14,4 +14,7 @@ WORKDIR /workspace
COPY Gemfile /workspace
COPY Gemfile.lock /workspace
RUN bundle install
COPY package.json /workspace
COPY package-lock.json /workspace
RUN npm ci
CMD bash

Loading…
Cancel
Save