chore: Fix incorrect escape sequence
Some checks failed
Container & Helm chart / Semantic Release (Dry-run) (push) Successful in 35s
Container & Helm chart / Container image (push) Failing after 56s

This commit is contained in:
Danny Bessems 2024-02-27 22:27:12 +11:00
parent 374031d120
commit b43a471dc1

View File

@ -5,10 +5,9 @@ WORKDIR /app
COPY go.mod go.sum ./
COPY . .
RUN go mod download && /
RUN go mod download && \
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o main .
FROM scratch
WORKDIR /app