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
{{ message }}
This repository has been archived by the owner on May 17, 2020. It is now read-only.
# install dependencies -> rebuild node-sass for linux
RUN cd client && yarn install --silent --pure-lockfile --ignore-scripts --check-files
RUN rm -rf /app/client/node_modules/node-sass/vendor/**/*
RUN mkdir -p /app/client/node_modules/node-sass/vendor/linux_musl-x64-72
RUN wget https://github.com/sass/node-sass/releases/download/v4.13.1/linux_musl-x64-72_binding.node -P /app/client/node_modules/node-sass/vendor/linux_musl-x64-72
RUN cd client && npm rebuild node-sass
# copy files to working directory
COPY package.json /app/package.json
# install server dependencies
RUN yarn install --silent --pure-lockfile --ignore-scripts --check-files