install npm deps in docker

This commit is contained in:
Thomas Clavier 2023-11-29 23:12:16 +01:00
parent 250c4349bb
commit afaa5d4f7b
No known key found for this signature in database
GPG key ID: 20CCE23E53E6E41A

View file

@ -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