You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running docker build -t canvas-docker . per the first step in the README.
i'm getting:
error The workspace feature is currently experimental and needs to be manually enabled - please add "workspaces-experimental true" to your .yarnrc file.
I'll include a bit more context:
Step 31/40 : RUN yarn install --pure-lockfile
---> Running in a8e8ece83d62
yarn install v0.27.5
error The workspace feature is currently experimental and needs to be manually enabled - please add "workspaces-experimental true" to your .yarnrc file.
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
The command '/bin/sh -c yarn install --pure-lockfile' returned a non-zero code: 1
I know that the yarn being used here is inside Docker, because I don't even have yarn on my local machine.
I added RUN yarn config set workspaces-experimental true to the Dockerfile, and that got me past this error -- YAY!
I'll send a pull request; you all can accept if you determine the experimental config to not pose any security risk or whatever. Thanks! (my first PR!)
The text was updated successfully, but these errors were encountered:
danieljsj
pushed a commit
to danieljsj/canvas-docker
that referenced
this issue
Oct 19, 2018
I had been receiving
'error The workspace feature is currently experimental and needs to be
manually enabled - please add "workspaces-experimental true" to your
.yarnrc file.'
So I added 'RUN yarn config set workspaces-experimental true' right
after the installation of yarn, and the error did not appear on next
runtime.
resolves: harvard-dce#18
I'm running
docker build -t canvas-docker .
per the first step in the README.i'm getting:
I'll include a bit more context:
Here's the full output of the command:
https://pastebin.com/raw/eVNxu9cC
I know that the yarn being used here is inside Docker, because I don't even have yarn on my local machine.
I added
RUN yarn config set workspaces-experimental true
to the Dockerfile, and that got me past this error -- YAY!I'll send a pull request; you all can accept if you determine the experimental config to not pose any security risk or whatever. Thanks! (my first PR!)
The text was updated successfully, but these errors were encountered: