Skip to content

Commit 7e20af1

Browse files
Fix Dockerfile UI build output path
uibuild WORKDIR is /ui, so ../content/ resolves to /content/, not /build/content/. 🤖 Generated with Mister Maluco Co-Authored-By: MisterMal <teskeslab@lucasteske.dev>
1 parent 0cc820b commit 7e20af1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY go.mod go.sum ./
1414
RUN go mod download
1515

1616
COPY . .
17-
COPY --from=uibuild /build/content/ content/
17+
COPY --from=uibuild /content/ content/
1818
RUN CGO_ENABLED=0 GOOS=linux go build -o segdsp_worker .
1919

2020
FROM alpine:latest

0 commit comments

Comments
 (0)