From a8957c99a685a8d494253a60205f6ac4c7f00884 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Sat, 8 Jan 2022 11:28:14 -0600 Subject: [PATCH] fix: scoped v4 strapi package for yarn pull --- strapi/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strapi/Dockerfile b/strapi/Dockerfile index b06d35a5..87dc155c 100644 --- a/strapi/Dockerfile +++ b/strapi/Dockerfile @@ -2,7 +2,7 @@ ARG BASE_VERSION FROM strapi/base:${BASE_VERSION} ARG STRAPI_VERSION -RUN yarn global add strapi@${STRAPI_VERSION} +RUN yarn global add @strapi/strapi@${STRAPI_VERSION} RUN mkdir /srv/app && chown 1000:1000 -R /srv/app