From 1177c5fce07604fa6ab55fb38004b77c08794c76 Mon Sep 17 00:00:00 2001 From: GoHorse Deploy Date: Thu, 5 Feb 2026 13:03:20 +0000 Subject: [PATCH] debug: force fail to see files --- Dockerfile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index b7df088..7c1ebca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,5 @@ FROM mirror.gcr.io/library/golang:1.23-alpine AS builder WORKDIR /app COPY backend/ . -RUN ls -la +RUN echo '--- FILE LISTING ---' && ls -R && echo '--- END LISTING ---' && exit 1 RUN go mod download -RUN CGO_ENABLED=0 GOOS=linux go build -ldflags=" -s -w\ -o main . - -FROM alpine:latest -WORKDIR /app -RUN apk --no-cache add ca-certificates tzdata -COPY --from=builder /app/main . -COPY --from=builder /app/migrations ./migrations -CMD [\.\/main\]