Skip to content

Commit a21e526

Browse files
Merge pull request #38 from gptscript-ai/fix-ui-docker
fix: enable ui in docker image
2 parents 357da7b + 7a42a5b commit a21e526

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
FROM golang:1.22.0-alpine3.19 AS build
2-
RUN apk add -U --no-cache make git
3-
COPY / /src/gptscript
2+
RUN apk add -U --no-cache make git npm
3+
COPY . /src/gptscript
44
WORKDIR /src/gptscript
5-
RUN make build
5+
6+
RUN make all
67

78
FROM alpine AS release
89
COPY --from=build /src/gptscript/bin /usr/local/bin/

0 commit comments

Comments
 (0)