Skip to content

Commit 16f15b3

Browse files
authored
Fix local docker setup to add support for yarn v3 (#905)
Yarn v3 needs: - activating inside Dockerfile - volumes need mounting in docker-compose ### Notes - `yarnrc.yml` could be different between environments (i.e. local machine and container) so ignoring the file in the repo and generating one on build in docker
1 parent 43201e3 commit 16f15b3

File tree

5 files changed

+20
-1
lines changed

5 files changed

+20
-1
lines changed

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ dist/
33
.git/
44
node_modules/
55
.yarn/
6+
.yarnrc.yml

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
node_modules
88
/.pnp
99
.pnp.js
10+
.yarn
1011

1112
# testing
1213
/coverage

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## Unreleased
88

9+
### Fixed
10+
11+
- Local docker setup with yarn v3 (#905)
12+
913
## [0.21.2] - 2024-01-23
1014

1115
### Changed

Dockerfile

+8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ WORKDIR /app
88

99
COPY package.json yarn.lock ./
1010
COPY . /app
11+
12+
RUN corepack enable \
13+
&& corepack prepare yarn@stable --activate \
14+
&& yarn set version 3.4.1 \
15+
&& echo -e "nodeLinker: node-modules\n\n$(cat /app/.yarnrc.yml)" > /app/.yarnrc.yml \
16+
&& cat /app/.yarnrc.yml \
17+
&& printf "Switched to Yarn version: "; yarn --version
18+
1119
RUN yarn
1220

1321
EXPOSE 3000

docker-compose.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,13 @@ services:
55
context: .
66
volumes:
77
- .:/app
8-
- /app/node_modules
98
- /var/run/docker.sock:/var/run/docker.sock
9+
- /app/.yarn
10+
- $PWD/.yarn/plugins:/app/.yarn/plugins
11+
- $PWD/.yarn/releases:/app/.yarn/releases
12+
- $PWD/.yarn/patches:/app/.yarn/patches
13+
- $PWD/.yarn/sdks:/app/.yarn/sdks
14+
- $PWD/.yarn/versions:/app/.yarn/versions
1015
stdin_open: true
1116
react-ui:
1217
<<: *x-app

0 commit comments

Comments
 (0)