Skip to content

Commit 3d2923c

Browse files
committed
chore(docker): install Sass globally via yarn in Dockerfile
1 parent 2f30d60 commit 3d2923c

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

node22/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ USER csdev
2828
RUN echo Y | yarn -v
2929
RUN corepack prepare yarn@4.8.1 --activate
3030

31+
## Install Sass
32+
RUN yarn global add sass
33+
3134
WORKDIR /var/dev
3235

3336
CMD ["ash", "-l"]

node24/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ USER csdev
2828
RUN echo Y | yarn -v
2929
RUN corepack prepare yarn@4.9.0 --activate
3030

31-
WORKDIR /var/dev
31+
## Install Sass
32+
RUN yarn global add sass
33+
34+
WORKDIR /var/devqq
3235

3336
CMD ["ash", "-l"]

0 commit comments

Comments
 (0)