0
0

More than 1 year has passed since last update.

Flyデプロイエラー解決編(Windows)

Posted at

今回はfly.ioのエラー解決に向けての記事です!

①yarnについてのエラー解決

Dockerfileの25行目付近を以下のコードを追加

Dockerfile
ARG NODE_VERSION=16.14.0
ARG YARN_VERSION=1.22.17 #追加コード
ARG BUNDLER_VERSION=2.2.32

同じくDockerfileの48行目付近を以下のコードに変更

Dockerfile
#変更前
RUN volta install node@${NODE_VERSION} yarn
#変更後
RUN volta install node@${NODE_VERSION} yarn@${YARN_VERSION}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0