mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
3e96fb1de3
Summary: The TravisCI tests were using an especially old version of Yarn. Upgrade to 0.27.5 so we're using a version closer to the version that more people (and especially RN maintainers) would be using. Closes https://github.com/facebook/react-native/pull/14883 Differential Revision: D5380987 Pulled By: javache fbshipit-source-id: d600c6c4dbf881006065d1e294226b6a2a60a70b
20 lines
338 B
JavaScript
20 lines
338 B
JavaScript
FROM library/node:6.9.2
|
|
|
|
ENV YARN_VERSION=0.27.5
|
|
|
|
# install dependencies
|
|
RUN apt-get update && apt-get install ocaml libelf-dev -y
|
|
RUN npm install yarn@$YARN_VERSION -g
|
|
|
|
# add code
|
|
RUN mkdir /app
|
|
ADD . /app
|
|
|
|
WORKDIR /app
|
|
RUN yarn install --ignore-engines
|
|
|
|
WORKDIR website
|
|
RUN yarn install --ignore-engines --ignore-platform
|
|
|
|
WORKDIR /app
|