From ddb4467a93b5ff7ea086a571488510e3da435a13 Mon Sep 17 00:00:00 2001 From: Nick Hale <4175918+njhale@users.noreply.github.com> Date: Thu, 11 Apr 2024 14:16:23 -0400 Subject: [PATCH] chore: remove dockerfile The project is not supporting container images at this juncture. Signed-off-by: Nick Hale <4175918+njhale@users.noreply.github.com> --- Dockerfile | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 3faae117..00000000 --- a/Dockerfile +++ /dev/null @@ -1,18 +0,0 @@ -FROM node:18-alpine as build-ui -RUN apk add -U --no-cache make git -COPY ui /src -WORKDIR /src -RUN make - -FROM golang:1.22.0-alpine3.19 AS build-go -RUN apk add -U --no-cache make git -COPY . /src/gptscript -COPY --from=build-ui /src/.output/public /src/gptscript/static/ui -WORKDIR /src/gptscript -RUN make build - -FROM alpine AS release -WORKDIR /src -COPY --from=build-go /src/gptscript/bin /usr/local/bin/ -COPY --from=build-go /src/gptscript/examples /src/examples -ENTRYPOINT ["/usr/local/bin/gptscript"]