From ce489496ed18a75177c59923068a2bea9375efa7 Mon Sep 17 00:00:00 2001 From: Stefan Reimer Date: Wed, 27 Sep 2023 18:01:49 +0000 Subject: [PATCH] chore: remove debug --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f743afd..c242da0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,6 @@ FROM golang:1.20-alpine as builder COPY src /fuse-device-plugin WORKDIR /fuse-device-plugin -RUN pwd && ls -laR - RUN CGO_ENABLED=0 go build -ldflags "-s -w" . FROM scratch