Skip to content

Commit

Permalink
use node 16.17
Browse files Browse the repository at this point in the history
  • Loading branch information
mrhotio committed Aug 20, 2023
1 parent ccbba13 commit d15efeb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions linux-amd64.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
ARG UPSTREAM_IMAGE
ARG UPSTREAM_DIGEST_AMD64

FROM node:14.17-alpine AS builder
FROM node:16.17-alpine AS builder
RUN apk add --no-cache curl
ARG VERSION
ENV COMMIT_TAG=${VERSION}
RUN mkdir /build && \
curl -fsSL "https://github.com/sct/overseerr/archive/v${VERSION}.tar.gz" | tar xzf - -C "/build" --strip-components=1 && \
cd /build && \
yarn --frozen-lockfile --network-timeout 1000000 && \
CYPRESS_INSTALL_BINARY=0 yarn --frozen-lockfile --network-timeout 1000000 && \
yarn build && \
yarn install --production --ignore-scripts --prefer-offline && \
yarn cache clean
Expand Down
6 changes: 3 additions & 3 deletions linux-arm64.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
ARG UPSTREAM_IMAGE
ARG UPSTREAM_DIGEST_ARM64

FROM node:14.17-alpine AS builder
RUN apk add --no-cache curl build-base python3 python2 sqlite
FROM node:16.17-alpine AS builder
RUN apk add --no-cache curl build-base python3 sqlite
ARG VERSION
ENV COMMIT_TAG=${VERSION}
RUN mkdir /build && \
curl -fsSL "https://github.com/sct/overseerr/archive/v${VERSION}.tar.gz" | tar xzf - -C "/build" --strip-components=1 && \
cd /build && \
yarn --frozen-lockfile --network-timeout 1000000 && \
CYPRESS_INSTALL_BINARY=0 yarn --frozen-lockfile --network-timeout 1000000 && \
yarn build && \
yarn install --production --ignore-scripts --prefer-offline && \
yarn cache clean
Expand Down

0 comments on commit d15efeb

Please sign in to comment.