We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06541ff commit 7a42a5bCopy full SHA for 7a42a5b
Dockerfile
@@ -1,8 +1,9 @@
1
FROM golang:1.22.0-alpine3.19 AS build
2
-RUN apk add -U --no-cache make git
3
-COPY / /src/gptscript
+RUN apk add -U --no-cache make git npm
+COPY . /src/gptscript
4
WORKDIR /src/gptscript
5
-RUN make build
+
6
+RUN make all
7
8
FROM alpine AS release
9
COPY --from=build /src/gptscript/bin /usr/local/bin/
0 commit comments