We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d31b8b commit 620627aCopy full SHA for 620627a
ui_service.Dockerfile
@@ -3,7 +3,7 @@
3
4
FROM golang:1.23-bookworm AS builder
5
6
-WORKDIR /deps
+WORKDIR /app
7
8
COPY go.* ./
9
RUN go mod download
@@ -21,6 +21,6 @@ RUN set -x && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -
21
22
WORKDIR /app
23
24
-COPY --from=builder /app/ui_service .
+COPY --from=builder /app/ui_service /app/ui_service
25
26
-ENTRYPOINT ["./ui_service"]
+ENTRYPOINT ["/app/ui_service"]
0 commit comments