在Docker文件上全局安装yarn [英] Install yarn global on Docker file

查看:277
本文介绍了在Docker文件上全局安装yarn的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试让yarn和docker映像识别全局软件包.

I'm trying to get a global package recognized by yarn and the docker image.

FROM ruby:2.7.2

RUN apt-get update -qq && apt-get install -y nodejs libvips-tools yarn

# Install all gems first.
# This hits the warm cache if unchanged so bundling is faster.
COPY Gemfile* /tmp/
WORKDIR /tmp
RUN bundle install

WORKDIR /sapco
COPY . /sapco

# Get yarn and install global required packages
RUN yarn global add mjml

EXPOSE 3000

# Start the main process.
CMD ["rails", "server", "-b", "0.0.0.0"]

我使用 docker build -f Dockerfile.dev.

我收到以下错误:

 => [internal] load build definition from Dockerfile.dev                                                                                                                                                   0.0s
 => => transferring dockerfile: 504B                                                                                                                                                                       0.0s
 => [internal] load .dockerignore                                                                                                                                                                          0.0s
 => => transferring context: 35B                                                                                                                                                                           0.0s
 => [internal] load metadata for docker.io/library/ruby:2.7.2                                                                                                                                              1.2s
 => CACHED [1/8] FROM docker.io/library/ruby:2.7.2@sha256:abe7034da4092958d306c37aded76a751ea9d35d5c90d1ad9e92290561bd5f3f                                                                                 0.0s
 => [internal] load build context                                                                                                                                                                          0.4s
 => => transferring context: 220.47kB                                                                                                                                                                      0.4s
 => [2/8] RUN apt-get update -qq && apt-get install -y nodejs libvips-tools yarn                                                                                                                          38.2s
 => [3/8] COPY Gemfile* /tmp/                                                                                                                                                                              0.1s
 => [4/8] WORKDIR /tmp                                                                                                                                                                                     0.0s
 => [5/8] RUN bundle install                                                                                                                                                                             292.6s
 => [6/8] WORKDIR /sapco                                                                                                                                                                                   0.0s
 => [7/8] COPY . /sapco                                                                                                                                                                                    0.5s
 => ERROR [8/8] RUN yarn global add mjml                                                                                                                                                                   0.7s
------
 > [8/8] RUN yarn global add mjml:
#12 0.567 Parsing scenario file global
#12 0.568 ERROR: [Errno 2] No such file or directory: 'global'

推荐答案

问题是yarn是 cmdtest

我最终将其追溯到 https://github.com/yarnpkg/yarn/issues/2821 并使用此命令在Dockerfile中运行解决了我的问题.

I eventually traced it down to https://github.com/yarnpkg/yarn/issues/2821 and resolved my issue with this command to run in the Dockerfile.

apt remove -y cmdtest
apt remove -y yarn
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
apt update
apt install yarn

这篇关于在Docker文件上全局安装yarn的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆