File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,15 @@ COPY . .
8
8
RUN apk update && apk add make gcc linux-headers libc-dev
9
9
RUN make STATIC=true build-go
10
10
11
+ FROM python:alpine AS pybuilder
12
+
13
+ RUN mkdir -p /src
14
+ WORKDIR /src
15
+ COPY . .
16
+
17
+ RUN apk update && apk add make git binutils
18
+ RUN make build-py
19
+
11
20
12
21
# Build node app.
13
22
FROM node:23-alpine AS nodebuilder
@@ -29,6 +38,8 @@ WORKDIR /app
29
38
COPY --from=gobuilder /src/bin/overlordd /app
30
39
COPY --from=gobuilder /src/scripts/start_overlordd.sh /app
31
40
COPY --from=gobuilder /src/bin/ghost.* /app/webroot/upgrade/
41
+ COPY --from=pybuilder /src/bin/ghost.* /app/webroot/upgrade/
42
+ COPY --from=pybuilder /src/bin/ovl.* /app/webroot/upgrade/
32
43
33
44
COPY --from=nodebuilder /src/webroot /app/webroot
34
45
You can’t perform that action at this time.
0 commit comments