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
RUN apk --no-cache --update --virtual build-dependencies add \
python \
make \
g++
ARG BUILD_VERSION
WORKDIR /dist
COPY package*.json ./
COPY yarn*.lock ./
RUN true \
&& yarn autoclean --init \
&& yarn autoclean --force \
&& yarn install \
&& true
COPY . .
RUN yarn lint | tee 1.log | sed -e 's/^/[yarn lint] /' & yarn test | tee 2.log | sed -e 's/^/[yarn test] /' & yarn build --set-build-version "$BUILD_VERSION" | tee 3.log | sed -e 's/^/[yarn build] /'