File tree Expand file tree Collapse file tree 5 files changed +9
-8
lines changed Expand file tree Collapse file tree 5 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 13
13
name : Lint & Test Build
14
14
if : github.event_name == 'pull_request'
15
15
runs-on : ubuntu-22.04
16
- container : node:20.9 -alpine
16
+ container : node:18.18 -alpine
17
17
steps :
18
18
- name : Checkout
19
19
uses : actions/checkout@v3
Original file line number Diff line number Diff line change 8
8
jobs :
9
9
build_and_push :
10
10
name : Build & Publish Docker Preview Images
11
- runs-on : ubuntu-20 .04
11
+ runs-on : ubuntu-22 .04
12
12
steps :
13
13
- name : Checkout
14
14
uses : actions/checkout@v3
Original file line number Diff line number Diff line change 1
- FROM node:20.9 -alpine AS BUILD_IMAGE
1
+ FROM node:18.18 -alpine AS BUILD_IMAGE
2
2
3
3
WORKDIR /app
4
4
@@ -8,7 +8,8 @@ ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64}
8
8
RUN \
9
9
case "${TARGETPLATFORM}" in \
10
10
'linux/arm64' | 'linux/arm/v7' ) \
11
- apk add --no-cache python3 make g++ \
11
+ apk add --no-cache python3 make g++ && \
12
+ ln -s /usr/bin/python3 /usr/bin/python \
12
13
;; \
13
14
esac
14
15
@@ -32,7 +33,7 @@ RUN touch config/DOCKER
32
33
RUN echo "{\" commitTag\" : \" ${COMMIT_TAG}\" }" > committag.json
33
34
34
35
35
- FROM node:20.9 -alpine
36
+ FROM node:18.18 -alpine
36
37
37
38
WORKDIR /app
38
39
Original file line number Diff line number Diff line change 1
- FROM node:20.9 -alpine
1
+ FROM node:18.18 -alpine
2
2
3
3
COPY . /app
4
4
WORKDIR /app
Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ architectures:
16
16
parts :
17
17
overseerr :
18
18
plugin : nodejs
19
- nodejs-version : ' 20.9.0 '
19
+ nodejs-version : ' 18.8.2 '
20
20
nodejs-package-manager : ' yarn'
21
- nodejs-yarn-version : v1.22.17
21
+ nodejs-yarn-version : v1.22.19
22
22
build-packages :
23
23
- git
24
24
- on arm64 :
You can’t perform that action at this time.
0 commit comments