This commit is contained in:
zhanshi 2025-02-08 12:42:46 +01:00
parent eb6addd034
commit 8a1ea7af6c

View file

@ -8,7 +8,7 @@ WORKDIR /app
COPY . .
# build the go server
RUN go mod tidy && go build -o codex-server
RUN go mod tidy && CGO_ENABLED=0 go build -o codex-server
# create a smaller final image
FROM alpine:latest