Skip to content

Commit 620627a

Browse files
committed
fix: Fix directories in ui_service Dockerfile
1 parent 9d31b8b commit 620627a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ui_service.Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
FROM golang:1.23-bookworm AS builder
55

6-
WORKDIR /deps
6+
WORKDIR /app
77

88
COPY go.* ./
99
RUN go mod download
@@ -21,6 +21,6 @@ RUN set -x && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -
2121

2222
WORKDIR /app
2323

24-
COPY --from=builder /app/ui_service .
24+
COPY --from=builder /app/ui_service /app/ui_service
2525

26-
ENTRYPOINT ["./ui_service"]
26+
ENTRYPOINT ["/app/ui_service"]

0 commit comments

Comments
 (0)