We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7eb8bf commit 17bb4fbCopy full SHA for 17bb4fb
2 files changed
Dockerfile
@@ -123,6 +123,9 @@ RUN gem install bundler --version 2.5.22
123
COPY --chown=$APP_USER:$APP_USER Gemfile* ./
124
RUN bundle install
125
126
+COPY --chown=$APP_USER:$APP_USER package.json yarn.lock ./
127
+RUN yarn install
128
+
129
# Copy the rest of the codebase. We do this after bundle-install so that
130
# changes unrelated to the gemset don't invalidate the cache and force a slow
131
# re-install.
package.json
@@ -13,5 +13,6 @@
13
"version": "0.1.0",
14
"devDependencies": {
15
"webpack-dev-server": "^3"
16
- }
+ },
17
+ "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
18
}
0 commit comments