Skip to content

Commit

Permalink
change to yarn
Browse files Browse the repository at this point in the history
tsaridas committed Dec 22, 2023
1 parent f7b7e90 commit fe409b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -18,8 +18,8 @@ RUN REPO="https://github.com/Stremio/stremio-web.git"; if [ "$BRANCH" == "releas
WORKDIR /srv/stremio-web
# Workaround to run it twice since if it fails because of timeout issues when building container in github
# npm ERR! code ECONNRESET
RUN npm ci --no-audit --no-fund || npm ci
RUN npm run build
RUN yarn install --no-audit --no-optional --mutex network
RUN yarn build

RUN wget $(wget -O- https://raw.githubusercontent.com/Stremio/stremio-shell/master/server-url.txt)

@@ -38,7 +38,7 @@ LABEL version=${VERSION}
WORKDIR /srv/stremio-server
COPY --from=builder-web /srv/stremio-web/build ./build
COPY --from=builder-web /srv/stremio-web/server.js ./
RUN npm install -g http-server
RUN yarn global add http-server

COPY ./stremio-web-service-run.sh ./
COPY ./extract_certificate.js ./

0 comments on commit fe409b0

Please sign in to comment.