pie doesn't mesh with scratch image

pull/587/head
techknowlogick 8 months ago
parent 32b9f5e836
commit 2a666c84cb

@ -1,10 +1,10 @@
FROM cgr.dev/chainguard/go:latest AS buildenv
FROM cgr.dev/chainguard/go:latest AS build
COPY . /build/
WORKDIR /build
RUN make clean build STATIC=true
RUN make build
FROM cgr.dev/chainguard/static:latest
COPY --from=buildenv /build/tea /tea
COPY --from=build /build/tea /tea
VOLUME [ "/app" ]
ENV HOME="/app"
ENTRYPOINT ["/tea"]

@ -37,9 +37,6 @@ ifeq ($(OS), Windows_NT)
else
EXECUTABLE := tea
VET_TOOL := gitea-vet
ifneq ($(shell uname -s), OpenBSD)
override BUILDMODE := -buildmode=pie
endif
endif
.PHONY: all

Loading…
Cancel
Save