chore: remove gomake install from image
Some checks failed
itom-platform auto build image / build (push) Failing after 5m7s

This commit is contained in:
kim.dev.6789
2026-01-15 17:34:30 +08:00
parent ef4f691436
commit 7cc65b56b1

View File

@@ -37,7 +37,6 @@ RUN go mod download
# Install Mage to use for building the application # Install Mage to use for building the application
RUN go install github.com/magefile/mage@v1.15.0 RUN go install github.com/magefile/mage@v1.15.0
RUN go install github.com/openimsdk/gomake@v0.0.15-alpha.1
# Optionally build your application if needed # Optionally build your application if needed
RUN mage build RUN mage build
@@ -57,7 +56,6 @@ WORKDIR $SERVER_DIR
COPY --from=builder $SERVER_DIR/_output $SERVER_DIR/_output COPY --from=builder $SERVER_DIR/_output $SERVER_DIR/_output
COPY --from=builder $SERVER_DIR/config $SERVER_DIR/config COPY --from=builder $SERVER_DIR/config $SERVER_DIR/config
COPY --from=builder /go/bin/mage /usr/local/bin/mage COPY --from=builder /go/bin/mage /usr/local/bin/mage
COPY --from=builder /go/bin/gomake /usr/local/bin/gomake
COPY --from=builder $SERVER_DIR/magefile_windows.go $SERVER_DIR/ COPY --from=builder $SERVER_DIR/magefile_windows.go $SERVER_DIR/
COPY --from=builder $SERVER_DIR/magefile_unix.go $SERVER_DIR/ COPY --from=builder $SERVER_DIR/magefile_unix.go $SERVER_DIR/
COPY --from=builder $SERVER_DIR/magefile.go $SERVER_DIR/ COPY --from=builder $SERVER_DIR/magefile.go $SERVER_DIR/