We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 005e56c commit 7f04f2cCopy full SHA for 7f04f2c
1 file changed
Dockerfile
@@ -1,3 +1,8 @@
1
+FROM golang:1.24 AS go-builder
2
+WORKDIR /src
3
+COPY BackupRepair/ .
4
+RUN CGO_ENABLED=0 go build -o /backup-repair .
5
+
6
ARG NODE_VERSION=22.15.0-bookworm-slim
7
8
# Use separate builder to retrieve & build node modules
@@ -45,6 +50,7 @@ COPY ./ ./
45
50
COPY --from=builder /usr/src/app/node_modules ./node_modules/
46
51
47
52
COPY --from=builder /usr/src/app/supervisord /usr/local/bin/
53
+COPY --from=go-builder /backup-repair /usr/src/app/
48
54
49
55
ENV NO_PROXY localhost,127.0.0.1
56
ENV no_proxy localhost,127.0.0.1
0 commit comments