Skip to content

Commit

Permalink
Merge pull request #38 from gptscript-ai/fix-ui-docker
Browse files Browse the repository at this point in the history
fix: enable ui in docker image
  • Loading branch information
ibuildthecloud authored Feb 14, 2024
2 parents 357da7b + 7a42a5b commit a21e526
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
FROM golang:1.22.0-alpine3.19 AS build
RUN apk add -U --no-cache make git
COPY / /src/gptscript
RUN apk add -U --no-cache make git npm
COPY . /src/gptscript
WORKDIR /src/gptscript
RUN make build

RUN make all

FROM alpine AS release
COPY --from=build /src/gptscript/bin /usr/local/bin/
Expand Down

0 comments on commit a21e526

Please sign in to comment.